Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 1469 Revision 1470
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 1469 2016-11-13 11:06:41Z lars $
13
//$Id: Order.php 1470 2016-11-14 11:01:43Z lars $
14
 
14
 
Zeile 15... Zeile 15...
15
class Order extends CI_Controller
15
class Order extends CI_Controller
Zeile 422... Zeile 422...
422
		$config['prev_tag_open'] = ' [ ';
422
		$config['prev_tag_open'] = ' [ ';
423
		$config['prev_tag_close'] = ' ]';
423
		$config['prev_tag_close'] = ' ]';
424
		$config['last_link'] = 'Letzte ›';
424
		$config['last_link'] = 'Letzte ›';
425
		$config['first_link'] = '‹ Erste';
425
		$config['first_link'] = '‹ Erste';
426
		$this->pagination->initialize($config);
426
		$this->pagination->initialize($config);
-
 
427
		$this->smarty->assign('title', 'Bestellübersicht');
427
		$this->smarty->assign('pagination', $this->pagination->create_links());
428
		$this->smarty->assign('pagination', $this->pagination->create_links());
428
		$this->smarty->assign('anz', $anz);
429
		$this->smarty->assign('anz', $anz);
429
		$this->smarty->assign('orders', $orders);
430
		$this->smarty->assign('orders', $orders);
430
		$this->smarty->view('orders.tpl');
431
		$this->smarty->view('orders.tpl');
431
	}
432
	}