Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 1423 Revision 1434
Zeile 8... Zeile 8...
8
 * @copyright Lars Tiefland
8
 * @copyright Lars Tiefland
9
 * @version 2016
9
 * @version 2016
10
 * @access public
10
 * @access public
11
 */
11
 */
Zeile 12... Zeile 12...
12
 
12
 
Zeile 13... Zeile 13...
13
//$Id: Order.php 1423 2016-11-12 20:22:06Z lars $
13
//$Id: Order.php 1434 2016-11-12 20:58:49Z lars $
14
 
14
 
Zeile 15... Zeile 15...
15
class Order extends CI_Controller
15
class Order extends CI_Controller
16
{
16
{
17
 
17
 
18
	public function __construct()
18
	public function __construct()
19
	{
19
	{
20
		parent::__construct();
-
 
21
		$this->load->model('order_model', 'order');
-
 
22
		$this->load->model('bestellart_model', 'bestellart');
-
 
23
	}
-
 
24
	/**
-
 
25
	 * User::index()
-
 
26
	 * 
-
 
27
	 * @return
-
 
28
	 */
20
		parent::__construct();
29
	public function index($anker = '')
21
		$this->load->model('order_model', 'order');
30
	{
22
		$this->load->model('bestellart_model', 'bestellart');
31
		$bestellarten = $this->bestellart->get_list();
23
		$bestellarten = $this->bestellart->get_list();
32
		//Wenn der Filter zurücksetzen gedrück wird, dann wird $filter nicht gesetzt und die Session muss dann geleert werden damit die Filter die Standard auswahl haben
24
		//Wenn der Filter zurücksetzen gedrück wird, dann wird $filter nicht gesetzt und die Session muss dann geleert werden damit die Filter die Standard auswahl haben
Zeile 379... Zeile 371...
379
 
371
 
380
			$this->smarty->assign("bezahlstatus_name", $bezahlstatus_name);
372
			$this->smarty->assign("bezahlstatus_name", $bezahlstatus_name);
381
			$this->smarty->assign("bezahlstatus_options", $bezahlstatus_options);
373
			$this->smarty->assign("bezahlstatus_options", $bezahlstatus_options);
382
			$this->smarty->assign("bezahlstatus_options_filter", $bezahlstatus_options_filter);
374
			$this->smarty->assign("bezahlstatus_options_filter", $bezahlstatus_options_filter);
-
 
375
		}
-
 
376
	}
-
 
377
	/**
-
 
378
	 * User::index()
-
 
379
	 * 
-
 
380
	 * @return
-
 
381
	 */
-
 
382
	public function index($anker = '')
383
		}
383
	{
384
		if (isset($_POST["anker"]))
384
		if (isset($_POST["anker"]))
385
		{
385
		{
386
			$this->smarty->assign("anker", $_POST["anker"] + 1);
386
			$this->smarty->assign("anker", $_POST["anker"] + 1);
387
		}
387
		}