示例#1
0
 function make_core()
 {
     if ($this->hasChildren()) {
         return sprintf($this->folder_core_template, $this->id, $this->href);
     }
     return parent::make_core();
 }
示例#2
0
 function make_core()
 {
     $output = parent::make_core();
     if ($this->hasChildren()) {
         $output .= $this->makefolder();
     }
     return $output;
 }