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