dyn_superclix.php

Go to the documentation of this file.
00001 <?php
00002 
00007 class dyn_superclix extends dyn_interface
00008 {
00015     public function render()
00016     {
00017         parent::render();
00018         $this->_aViewData["edit"] = $this->_getEditShop( oxSession::getVar( "actshop") );
00019         return "dyn_superclix.tpl";
00020     }
00021 
00027     public function save()
00028     {
00029         $oShop = oxNew( "oxshop" );
00030         if ( $oShop->load( $this->getEditObjectId() ) ) {
00031             $oShop->assign( oxConfig::getParameter( "editval" ) );
00032             $oShop->save();
00033         }
00034     }
00035 }