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