コード例 #1
0
ファイル: Javascripts.php プロジェクト: Yomyer/cckit
 /**
  * @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
ファイル: Stylesheets.php プロジェクト: Yomyer/cckit
 /**
  * @return Stylesheet[]
  */
 public function getAllStylesheets()
 {
     return parent::getAll();
 }
コード例 #4
0
ファイル: Appearances.php プロジェクト: Yomyer/cckit
 /**
  * @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);
 }