00001 <?php 00002 00006 class Article_Userdef extends oxAdminDetails 00007 { 00014 public function render() 00015 { 00016 parent::render(); 00017 00018 $oArticle = oxNew( "oxarticle" ); 00019 $this->_aViewData["edit"] = $oArticle; 00020 00021 $soxId = oxConfig::getParameter( "oxid" ); 00022 if ( $soxId != "-1" && isset( $soxId ) ) { 00023 // load object 00024 00025 00026 $oArticle->load( $soxId ); 00027 } 00028 00029 return "article_userdef.tpl"; 00030 } 00031 }