category_pictures.php

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