/
var
/
www
/
html
/
sugardemo
/
modules
/
Administration
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ /********************************************************************************* * Description: Contains a variety of utility functions specific to this module. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. * All Rights Reserved. * Contributor(s): ______________________________________.. ********************************************************************************/ function get_chooser_js() { $the_script = <<<EOQ <script type="text/javascript" language="Javascript"> <!-- to hide script contents from old browsers function set_chooser() { var display_tabs_def = ''; for(i=0; i < object_refs['display_tabs'].options.length ;i++) { display_tabs_def += "display_tabs[]="+object_refs['display_tabs'].options[i].value+"&"; } document.EditView.display_tabs_def.value = display_tabs_def; } // end hiding contents from old browsers --> </script> EOQ; return $the_script; }