Same name and namespace in other branches
  1. 6.0.x advagg_js_minify/jspacker.inc \JavaScriptPacker::_getJSFunction() 1 commentaire
  2. 7.x-1.x advagg_js_compress/jspacker.inc \JavaScriptPacker::_getJSFunction() 1 commentaire
  3. 7.x-2.x advagg_js_compress/jspacker.inc \JavaScriptPacker::_getJSFunction() 1 commentaire
  4. 8.x-2.x advagg_js_minify/jspacker.inc \JavaScriptPacker::_getJSFunction() 1 commentaire
  5. 8.x-3.x advagg_js_minify/jspacker.inc \JavaScriptPacker::_getJSFunction() 1 commentaire
  6. 8.x-4.x advagg_js_minify/jspacker.inc \JavaScriptPacker::_getJSFunction() 1 commentaire
1 call to JavaScriptPacker::_getJSFunction()
JavaScriptPacker::_bootStrap dans advagg_js_minify/jspacker.inc

Fichier

advagg_js_minify/jspacker.inc, line 471

Classe

JavaScriptPacker

Code

private function _getJSFunction($aName) {
    if (defined('self::JSFUNCTION' . $aName)) {
        return constant('self::JSFUNCTION' . $aName);
    }
    else {
        return '';
    }
}