Revision 930 | Revision 1301 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?php/**** @package WebanOS CI* @author Lars Tiefland <ltiefland@gmail.com>* @copyright 2016* @version $Rev: 1300 $*/class Backend extends CI_Controller{public function __construct(){parent::__construct();}public function index(){if ($this->input->get('clicked')){$this->session->clicked = $this->input->get('clicked');}$this->smarty->view('index.tpl');}}?>