Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 1948 Revision 2013
Zeile 1... Zeile 1...
1
<?php
1
<?php
Zeile 2... Zeile 2...
2
 
2
 
3
class Design extends CI_Controller
3
class Design extends CI_Controller
-
 
4
{
-
 
5
 
-
 
6
	public function __construct()
-
 
7
	{
-
 
8
		parent::__construct();
-
 
9
		$this->load->model('Design_model', 'design');
-
 
10
	}
4
{
11
 
5
	public function index()
12
	public function index()
-
 
13
	{
-
 
14
		$settings = $this->design->list();
6
	{
15
		$this->smarty->assign('settings', $settings);
7
		$this->smarty->view('design.tpl');
16
		$this->smarty->view('design.tpl');
8
	}
17
	}