00001 <?php 00002 00008 class Tools extends oxAdminView 00009 { 00016 public function render() 00017 { 00018 if ( $this->getConfig()->isDemoShop() ) { 00019 return oxUtils::getInstance()->showMessageAndExit( "Access denied !" ); 00020 } 00021 00022 parent::render(); 00023 return "tools.tpl"; 00024 } 00025 }