OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
oxshoplist.php
Go to the documentation of this file.
1 <?php
2 
8 class oxShopList extends oxList
9 {
17  public function __construct( $sObjectsInListName = 'oxshop')
18  {
19  return parent::__construct( 'oxshop');
20  }
21 
27  public function getAll()
28  {
29  $this->selectString( 'SELECT `oxshops`.* FROM `oxshops`' );
30  }
31 
32 }