Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 2347 Revision 2351
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 2347 2018-10-03 15:07:55Z lars $
13
//$Id: Logistiker.php 2351 2018-10-03 15:12:10Z lars $
14
 
14
 
Zeile 15... Zeile 15...
15
class Logistiker extends CI_Controller
15
class Logistiker extends CI_Controller
Zeile 46... Zeile 46...
46
	 * @param mixed $id
46
	 * @param mixed $id
47
	 * @return void
47
	 * @return void
48
	 */
48
	 */
49
	public function edit($id = null)
49
	public function edit($id = null)
50
	{
50
	{
-
 
51
		if ($id) {
51
		$logistiker = $this->logistiker->get($id);
52
			$logistiker = $this->logistiker->get($id);
-
 
53
		}
52
		$this->smarty->assign("logistiker", $logistiker);
54
		$this->smarty->assign("logistiker", $logistiker);
53
		$this->smarty->view('logistiker_edit.tpl');
55
		$this->smarty->view('logistiker_edit.tpl');
54
	}
56
	}
Zeile 55... Zeile 57...
55
 
57