AdminPageFramework_Form_View___Script_OptionStorage::getScript PHP Méthode

getScript() public static méthode

public static getScript ( )
    public static function getScript()
    {
        return <<<JAVASCRIPTS
(function ( \$ ) {
            
    \$.fn.aAdminPageFrameworkInputOptions = {}; 
                            
    \$.fn.storeAdminPageFrameworkInputOptions = function( sID, vOptions ) {
        var sID = sID.replace( /__\\d+_/, '___' );\t// remove the section index. The g modifier is not used so it will replace only the first occurrence.
        \$.fn.aAdminPageFrameworkInputOptions[ sID ] = vOptions;
    };\t
    \$.fn.getAdminPageFrameworkInputOptions = function( sID ) {
        var sID = sID.replace( /__\\d+_/, '___' ); // remove the section index
        return ( 'undefined' === typeof \$.fn.aAdminPageFrameworkInputOptions[ sID ] )
            ? null
            : \$.fn.aAdminPageFrameworkInputOptions[ sID ];
    }

}( jQuery ));
JAVASCRIPTS;
    }
AdminPageFramework_Form_View___Script_OptionStorage