Exemplo n.º 1
0
 /**
  * Returns list of all positions defined in outsets.
  *
  * @return array
  */
 public function positions()
 {
     $list = [];
     foreach ($this->items as $name => $title) {
         $index = Layout::index($name);
         $list += $index['positions'];
     }
     return $list;
 }