예제 #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;
 }