Esempio n. 1
0
 /**
  * Obtiene la ruta completa de la categor?a basada en nombres
  */
 function path()
 {
     if ($this->getVar('parent') == 0) {
         return $this->getVar('shortname', 'n') . '/';
     }
     $parent = new MWCategory($this->getVar('parent', 'n'));
     return $parent->path() . $this->getVar('shortname') . '/';
 }