pickles/common/modules/store/category.php
2008-10-22 21:15:29 +00:00

18 lines
314 B
PHP

<?php
class store_category extends store {
protected $display = DISPLAY_SMARTY;
public function __default() {
$category = $this->db->getRow('
SELECT id, name, permalink, description
FROM categories
WHERE permalink = "' . $_REQUEST['permalink'] . '";
');
$this->category = $category;
}
}
?>