Example #1
0
 /**
  * Returns the category safe name for a given category id 
  *
  * @param int $cat_id
  * @return string
  */
 public function getCatSafeName($cat_id = 0)
 {
     require_once LIBS . 'Category.php';
     $category = new Category();
     return $category->getCatSafeName($this, $cat_id);
 }