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