示例#1
0
 /**
  * Register JS files
  *
  * @return array
  */
 public function getJSFiles()
 {
     $list = parent::getJSFiles();
     $list[] = $this->getDir() . '/ship_as_bill.js';
     return $list;
 }
示例#2
0
 /**
  * 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;
 }