public function __construct($group = 1)
 {
     parent::__construct();
     $this->_group = (int) $group;
     $this->_active = null;
     $this->_data = null;
 }
 public function __construct($id = null, $type = null, $active = true)
 {
     parent::__construct();
     $this->_attributes = new Var_Pool();
     $this->_attributes->register('id', $id);
     $this->_attributes->register('type', $type);
     $this->_attributes->register('active', $active);
 }
 public function __construct($id)
 {
     parent::__construct();
     $this->_attributes = new Var_Pool();
     $this->_attributes->register('id');
     $this->_attributes->register('pid');
     $this->_attributes->register('gid');
     if ($this->id !== null) {
         $this->loadData();
     }
 }
 public function __construct($ppp = 0, $page = 1, Kiwi_Product_Search $search, Kiwi_Product_Sort $sort = null)
 {
     parent::__construct();
     $this->_products = null;
     $this->_total = null;
     $this->_limit = $ppp;
     $this->_page = $page;
     $this->_search = $search;
     $this->_sort = $sort;
     $this->_line = null;
     $this->_skip = 0;
 }
 public function __construct($id, $pbid = null)
 {
     parent::__construct();
     $this->_id = $id;
     $this->_pbid = $pbid;
     $this->_prodbind = null;
     $this->_url = null;
     $this->_data = null;
     $this->_lines = null;
     $this->_paths = null;
     $this->_properties = null;
     $this->_property_values = null;
     $this->_extra_photos = null;
     $this->_illustrative_photos = null;
     $this->_collection = null;
     $this->_attachments = null;
     if ($this->_id === null && $this->_pbid === null) {
         throw new Data_Insufficient_Exception('Product ID or Product Bind ID');
     } else {
         $this->loadID();
     }
 }
 public function __construct($gid)
 {
     parent::__construct();
     $this->_data = array();
     $this->populatePath($gid);
 }
 public function __construct($root = 1)
 {
     parent::__construct();
     $this->_root = $root;
     $this->_menu = null;
 }