oxwinformation.php

Go to the documentation of this file.
00001 <?php
00002 
00007 class oxwInformation extends oxWidget
00008 {
00009 
00015     protected $_sThisTemplate = 'widget/footer/info.tpl';
00016 
00020     protected $_oContentList;
00021 
00027     public function getServicesKeys()
00028     {
00029         $oContentList = $this->_getContentList();
00030 
00031         return $oContentList->getServiceKeys();
00032     }
00033 
00039     public function getServicesList()
00040     {
00041         $oContentList = $this->_getContentList();
00042         $oContentList->loadServices();
00043 
00044         return $oContentList;
00045     }
00046 
00052     protected function _getContentList()
00053     {
00054         if (!$this->_oContentList) {
00055             $this->_oContentList = oxNew("oxContentList");
00056         }
00057 
00058         return $this->_oContentList;
00059     }
00060 }