OXID eShop CE  4.9.7
 All Classes Files Functions Variables Pages
theme_list.php
Go to the documentation of this file.
1 <?php
2 
9 class Theme_List extends oxAdminList
10 {
11 
17  public function render()
18  {
19  $oTheme = oxNew('oxtheme');
20 
22 
23  // assign our list
24  $this->_aViewData['mylist'] = $oTheme->getList();
25 
26  return 'theme_list.tpl';
27  }
28 }