/** * Get a list of CSS files * * @return array */ public function getCSSFiles() { $list = parent::getCSSFiles(); $list[] = $this->getDir() . '/' . $this->getPageBodyDir() . '/style.css'; return $list; }
/** * 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; }