Subversion-Projekte lars-tiefland.ci

Revision

Revision 1301 | Revision 2239 | 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: 1333 $
 */

class Backend extends CI_Controller
{
        public function __construct()
        {
                parent::__construct();
        }
        public function index()
        {
                if ($this->input->get('clicked_tool'))
                {
                        $this->session->clicked_tool = $this->input->get('clicked_tool');
                }
                if ($this->input->get('clicked'))
                {
                        $this->session->clicked = $this->input->get('clicked');
                }
                else
                {
                        $this->smarty->view('index.tpl');
                }
        }
}

?>