コード例 #1
0
ファイル: Table.php プロジェクト: kingsj/core
 /**
  * Get a list of CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = $this->getDir() . '/' . $this->getPageBodyDir() . '/style.css';
     return $list;
 }
コード例 #2
0
ファイル: Table.php プロジェクト: kewaunited/xcart
 /**
  * Get a list of CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = $this->getDir() . '/' . $this->getPageBodyDir() . '/style.css';
     if (static::SORT_TYPE_MOVE === $this->getSortableType()) {
         $list = array_merge($list, $this->getWidget(array(), $this->getMovePositionWidgetClassName())->getCSSFiles(), $this->getWidget(array(), $this->getOrderByWidgetClassName())->getCSSFiles());
     }
     return $list;
 }