コード例 #1
0
ファイル: ShipAsBill.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Register JS files
  *
  * @return array
  */
 public function getJSFiles()
 {
     $list = parent::getJSFiles();
     $list[] = $this->getDir() . '/ship_as_bill.js';
     return $list;
 }
コード例 #2
0
ファイル: Switcher.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Get a list of JS files required to display the widget properly
  *
  * @return array
  */
 public function getJSFiles()
 {
     return array_merge(parent::getJSFiles(), $this->getWidgetJSFiles());
 }
コード例 #3
0
ファイル: Switcher.php プロジェクト: kingsj/core
 /**
  * Get a list of JS files required to display the widget properly
  *
  * @return array
  */
 public function getJSFiles()
 {
     $list = parent::getJSFiles();
     $list[] = $this->getDir() . '/input/checkbox/switcher.js';
     return $list;
 }