Revision 410 | Revision 417 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?php/*** @author Lars Tiefland* @copyright 2016*/class Shop extends CI_Controller{public function __construct(){parent::__construct();$this->load->model('Aktion_model','aktion');if (ENVIRONMENT == "production"){$this->output->cache(120);}}public function index(){$aktion = $this->aktion->get_cur_aktion();$aktion['items']=$this->aktion->get_aktion_items($aktion['ID']);var_dump($aktion);$this->smarty->view('start.tpl');}}?>