Go to the documentation of this file.00001 <?php
00002
00009 class Attribute_Category extends oxAdminDetails
00010 {
00017 public function render()
00018 {
00019 parent::render();
00020
00021 $soxId = oxConfig::getParameter( "oxid");
00022 $this->_aViewData["oxid"] = $soxId;
00023
00024 $aListAllIn = array();
00025 if ( $soxId != "-1" && isset( $soxId)) {
00026
00027 $oAttr = oxNew( "oxattribute" );
00028 $oAttr->load( $soxId);
00029 $this->_aViewData["edit"] = $oAttr;
00030 }
00031
00032 if ( oxConfig::getParameter("aoc") ) {
00033
00034 $aColumns = array();
00035 include_once 'inc/'.strtolower(__CLASS__).'.inc.php';
00036 $this->_aViewData['oxajax'] = $aColumns;
00037
00038 return "popups/attribute_category.tpl";
00039 }
00040 return "attribute_category.tpl";
00041 }
00042 }