module_list.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class Module_List extends oxAdminList
00010 {
00011 
00016     protected $_aModules = array();
00017 
00018 
00024     public function render()
00025     {
00026         $sModulesDir = $this->getConfig()->getModulesDir();
00027 
00028         $oModuleList = oxNew("oxModuleList");
00029         $aModules = $oModuleList->getModulesFromDir($sModulesDir);
00030 
00031         parent::render();
00032 
00033         // assign our list
00034         $this->_aViewData['mylist'] = $aModules;
00035 
00036         return 'module_list.tpl';
00037     }
00038 }