コード例 #1
0
 function make_core()
 {
     if ($this->hasChildren()) {
         return sprintf($this->folder_core_template, $this->id, $this->href);
     }
     return parent::make_core();
 }
コード例 #2
0
ファイル: Menu.inc.php プロジェクト: radicaldesigns/amp
 function make_core()
 {
     $output = parent::make_core();
     if ($this->hasChildren()) {
         $output .= $this->makefolder();
     }
     return $output;
 }