Subversion-Projekte lars-tiefland.ci

Revision

Revision 1301 | Revision 2238 | Zur aktuellen Revision | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
757 lars 1
<?php
2
 
3
/**
4
 *
5
 * @package WebanOS CI
6
 * @author Lars Tiefland <ltiefland@gmail.com>
7
 * @copyright 2016
8
 * @version $Rev: 1333 $
9
 */
10
 
11
class Backend extends CI_Controller
12
{
847 lars 13
	public function __construct()
14
	{
15
		parent::__construct();
16
	}
757 lars 17
	public function index()
18
	{
1333 lars 19
		if ($this->input->get('clicked_tool'))
20
		{
21
			$this->session->clicked_tool = $this->input->get('clicked_tool');
22
		}
1300 lars 23
		if ($this->input->get('clicked'))
24
		{
25
			$this->session->clicked = $this->input->get('clicked');
26
		}
1301 lars 27
		else
28
		{
29
			$this->smarty->view('index.tpl');
30
		}
757 lars 31
	}
32
}
33
 
1333 lars 34
?>