コード例 #1
0
ファイル: yBreadCrumbSet.php プロジェクト: alexqwert/kanon
 public function toArray()
 {
     if ($this->_first === null) {
         return array();
     }
     return $this->_first->toArray();
 }
コード例 #2
0
ファイル: yBreadcrumb.php プロジェクト: alexqwert/kanon
 public function toArray()
 {
     $a = array();
     if ($this->_child !== null) {
         $a = $this->_child->toArray();
     }
     array_unshift($a, $this);
     return $a;
 }