/** * Register JS files * * @return array */ public function getJSFiles() { $list = parent::getJSFiles(); $list[] = 'js/stickyPanel.js'; return $list; }
/** * Get a list of JavaScript files * * @return array */ public function getJSFiles() { $list = parent::getJSFiles(); // Static call of the non-static function $list[] = self::getDir() . '/items_list.js'; return $list; }
/** * Get a list of JavaScript files * * @return array */ public function getJSFiles() { $list = parent::getJSFiles(); // Static call of the non-static function $list[] = self::getDir() . '/items_list.js'; $list[] = 'button/js/remove.js'; $list[] = 'form_field/js/text.js'; $list[] = 'form_field/input/text/float.js'; $list[] = 'form_field/input/text/integer.js'; $list[] = 'form_field/input/checkbox/switcher.js'; $list[] = 'form_field/inline/controller.js'; $list[] = 'form_field/inline/input/text.js'; $list[] = 'form_field/inline/input/text/integer.js'; $list[] = 'form_field/inline/input/text/price.js'; return $list; }