Example #1
0
 /**
  * Returns meta description and keywords for the category (if available)
  *
  * @param int $cat_id
  * @return array|false
  */
 public function getCatMeta($cat_id)
 {
     require_once LIBS . 'Category.php';
     $category = new Category();
     return $category->getCatMeta($this, $cat_id);
 }