Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 1472 Revision 1477
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: 1472 $
8
 * @version $Rev: 1477 $
9
 */
9
 */
Zeile 10... Zeile 10...
10
 
10
 
11
class Artikelstamm extends CI_Controller
11
class Artikelstamm extends CI_Controller
12
{
12
{
Zeile 25... Zeile 25...
25
		$this->smarty->assign('items', $items);
25
		$this->smarty->assign('items', $items);
26
		$this->smarty->assign('dirs', $dirs);
26
		$this->smarty->assign('dirs', $dirs);
27
		if ($dir == 1)
27
		if ($dir == 1)
28
		{
28
		{
29
			$this->smarty->assign('title', 'Artikelverwaltung');
29
			$this->smarty->assign('title', 'Artikelverwaltung');
30
			$this->smarty->display('artikelstamm.tpl');
30
			$this->smarty->display('artstamm.tpl');
31
		}
31
		}
32
		else
32
		else
33
		{
33
		{
34
			$this->smarty->display('artikelstamm_sub.tpl');
34
			$this->smarty->display('artstamm_sub.tpl');
35
		}
35
		}
36
	}
36
	}
37
}
37
}
Zeile 38... Zeile 38...
38
 
38
 
39
?>
39
?>