Subversion-Projekte lars-tiefland.ci

Revision

Revision 1301 | Revision 2238 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

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