Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 1457 Revision 1460
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 1457 2016-11-12 23:37:52Z lars $
13
//$Id: Order.php 1460 2016-11-12 23:55:09Z lars $
14
 
14
 
Zeile 15... Zeile 15...
15
class Order extends CI_Controller
15
class Order extends CI_Controller
Zeile 420... Zeile 420...
420
		$config['last_link'] = 'Letzte ›';
420
		$config['last_link'] = 'Letzte ›';
421
		$config['first_link'] = '‹ Erste';
421
		$config['first_link'] = '‹ Erste';
422
		$this->pagination->initialize($config);
422
		$this->pagination->initialize($config);
423
		$this->smarty->assign('pagination', $this->pagination->create_links());
423
		$this->smarty->assign('pagination', $this->pagination->create_links());
424
		$this->smarty->assign('anz', $anz);
424
		$this->smarty->assign('anz', $anz);
425
		$this->smarty->assign('anker', $anker);
-
 
426
		$this->smarty->assign('orders', $orders);
425
		$this->smarty->assign('orders', $orders);
427
		$this->smarty->view('orders.tpl');
426
		$this->smarty->view('orders.tpl');
428
	}
427
	}
Zeile 429... Zeile 428...
429
 
428