コード例 #1
0
 /**
  * Sets a collection.
  *
  * @param \Yosymfony\Spress\Core\ContentManager\Collection\CollectionInterface $collection
  */
 public function setCollection(CollectionInterface $collection)
 {
     $this->collections[$collection->getName()] = $collection;
 }
コード例 #2
0
ファイル: ContentManager.php プロジェクト: jjk-jacky/Spress
 private function getCollectionAttributes(CollectionInterface $collection)
 {
     $result = $collection->getAttributes();
     $result['path'] = $collection->getPath();
     return $result;
 }