OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
oxwinformation.php
Go to the documentation of this file.
1 <?php
2 
7 class oxwInformation extends oxWidget
8 {
14  protected $_sThisTemplate = 'widget/footer/info.tpl';
15 
19  protected $_oContentList;
20 
26  public function getServicesKeys()
27  {
28  $oContentList = $this->_getContentList();
29  return $oContentList->getServiceKeys();
30  }
31 
37  public function getServicesList()
38  {
39  $oContentList = $this->_getContentList();
40  $oContentList->loadServices();
41 
42  return $oContentList;
43  }
44 
50  protected function _getContentList()
51  {
52  if ( !$this->_oContentList ) {
53  $this->_oContentList = oxNew( "oxContentList" );
54  }
55 
56  return $this->_oContentList;
57  }
58 }