Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 2246 Revision 2250
Zeile 8... Zeile 8...
8
 * @copyright Lars Tiefland
8
 * @copyright Lars Tiefland
9
 * @version 2018
9
 * @version 2018
10
 * @access public
10
 * @access public
11
 */
11
 */
Zeile 12... Zeile 12...
12
 
12
 
Zeile 13... Zeile 13...
13
//$Id: Logistiker.php 2246 2018-10-02 18:13:29Z lars $
13
//$Id: Logistiker.php 2250 2018-10-02 18:19:59Z lars $
14
 
14
 
Zeile 15... Zeile 15...
15
class Logistiker extends CI_Controller
15
class Logistiker extends CI_Controller
Zeile 33... Zeile 33...
33
	 * 
33
	 * 
34
	 * @return
34
	 * @return
35
	 */
35
	 */
36
	public function index()
36
	public function index()
37
	{
37
	{
38
		$this->logistiker->get_list();
38
		$logistiker = $this->logistiker->get_list();
-
 
39
		$this->smarty->assign("logistiker", $logistiker);
39
		$this->smarty->view('logistiker.tpl');
40
		$this->smarty->view('logistiker.tpl');
40
	}
41
	}
Zeile 41... Zeile 42...
41
 
42
 
42
	/**
43
	/**