00001 <?php 00002 00008 class oxShopList extends oxList 00009 { 00017 public function __construct( $sObjectsInListName = 'oxshop') 00018 { 00019 return parent::__construct( 'oxshop'); 00020 } 00021 00027 public function getAll() 00028 { 00029 $this->selectString( 'SELECT `oxshops`.* FROM `oxshops`' ); 00030 } 00031 00032 }