示例#1
0
 /**
  * @return Javascript[]
  */
 public function getAllJavascripts()
 {
     return parent::getAll();
 }
示例#2
0
文件: Contents.php 项目: Yomyer/cckit
 /**
  * @param string $name
  * @param mixed $value
  * @return $this
  */
 public function add($name, $value)
 {
     if ($this->isRendered($value)) {
         $this->getGroup(get_class($value))->add($name, $value);
     }
     parent::add($name, $value);
     return $this;
 }
示例#3
0
 /**
  * @return Stylesheet[]
  */
 public function getAllStylesheets()
 {
     return parent::getAll();
 }
示例#4
0
 /**
  * @return AppearanceInterface[]
  */
 public function getAll()
 {
     return parent::getAll();
 }
示例#5
0
文件: Group.php 项目: Yomyer/cckit
 /**
  * @param int $index
  * @return Rendered
  */
 public function eq($index)
 {
     return parent::eq($index);
 }