/** * 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 ShopCategory($this->getVar('parent', 'n')); return $parent->path() . $this->getVar('shortname') . '/'; }