Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 1491 Revision 1502
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: 1491 $
8
 * @version $Rev: 1502 $
9
 */
9
 */
Zeile 10... Zeile 10...
10
 
10
 
11
class Artikelstamm extends CI_Controller
11
class Artikelstamm extends CI_Controller
12
{
12
{
Zeile 26... Zeile 26...
26
			$this->smarty->assign('title', 'Artikelverwaltung');
26
			$this->smarty->assign('title', 'Artikelverwaltung');
27
			$this->smarty->display('artstamm.tpl');
27
			$this->smarty->display('artstamm.tpl');
28
		}
28
		}
29
		else
29
		else
30
		{
30
		{
31
			$items = $this->directory->get_list($dir);
31
			$items = $this->artikel->get_list($dir);
32
			$this->smarty->assign('items', $items);
32
			$this->smarty->assign('items', $items);
33
			$this->smarty->display('artstamm_sub.tpl');
33
			$this->smarty->display('artstamm_sub.tpl');
34
		}
34
		}
35
	}
35
	}
36
}
36
}