1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30:
<?php
/**
* @author PHPShop Software
* @version 1.1
* @package PHPShopClass
*/
if (!defined("OBJENABLED")) {
require_once(dirname(__FILE__)."/obj.class.php");
require_once(dirname(__FILE__)."/array.class.php");
}
/**
* @author PHPShop Software
* @version 1.0
* @package PHPShopArray
*/
class PHPShopPageCategoryArray extends PHPShopArray {
function __construct() {
$this->objBase=$GLOBALS['SysValue']['base']['page_categories'];
$this->order=array('order'=>'num');
parent::__construct("id","name","parent_to");
}
}
?>