コード例 #1
0
ファイル: Contents.php プロジェクト: Yomyer/cckit
 /**
  * @param int $index
  * @param Rendered|string $content
  * @return $this
  */
 public function insertBefore($index, $content)
 {
     if ($this->isRendered($content)) {
         $this->getGroup(get_class($content))->insertBefore($index, $content);
     }
     parent::insertBefore($index, $content);
     return $this;
 }