category_pictures.php

Go to the documentation of this file.
00001 <?php
00002 
00008 class Category_Pictures extends oxAdminDetails
00009 {
00010 
00017     public function render()
00018     {
00019         parent::render();
00020 
00021         $this->_aViewData['edit'] = $oCategory = oxNew('oxcategory');
00022 
00023         $soxId = $this->getEditObjectId();
00024         if ($soxId != '-1' && isset($soxId)) {
00025             // load object
00026             $oCategory->load($soxId);
00027         }
00028 
00029         return "category_pictures.tpl";
00030     }
00031 }