OXID eShop CE  4.9.6
 All Classes Files Functions Variables Pages
oxshoplist.php
Go to the documentation of this file.
1 <?php
2 
8 class oxShopList extends oxList
9 {
10 
16  public function __construct()
17  {
18  return parent::__construct('oxshop');
19  }
20 
24  public function getAll()
25  {
26  $this->selectString('SELECT `oxshops`.* FROM `oxshops`');
27  }
28 
32  public function getIdTitleList()
33  {
34  $this->setBaseObject(oxNew('oxListObject', 'oxshops'));
35  $this->selectString('SELECT `OXID`, `OXNAME` FROM `oxshops`');
36  }
37 
38 }