Revision 528 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?php/*** @author Lars Tiefland* @copyright 2016*//*** Versand_uebersicht** Übersicht über alle Versandoptionen** @package WebanOS CI* @author Lars Tiefland* @copyright 2016* @version $Id: Versand_uebersicht.php 528 2016-09-15 11:20:18Z lars $* @access public*/class Versand_uebersicht extends CI_Controller{/*** Versand_uebersicht::__construct()** @return*/public function __construct(){parent::__construct();$GLOBALS['order_db'] = $this->load->database('order_db', TRUE);$GLOBALS['db_red'] = $this->load->database('db_red', TRUE);$versand_laender = getVersandLaender();$zahlarten = getZahlarten();$this->smarty->assign('zahlarten', $zahlarten);$this->smarty->assign('Laender', $versand_laender);}/*** Versand_uebersicht::index()** @return*/function index(){$versand_uebersicht['basketVersand'] = $this->get_versandkosten();$this->smarty->assign('title', 'Versandübersicht - '.$GLOBALS['INI']['titel_only']);$this->smarty->assign('versand_uebersicht', $versand_uebersicht);$this->smarty->view('versand_uebersicht.tpl');}/*** Versand_uebersicht::get_versandkosten()** @param mixed $land* @return*/private function get_versandkosten($land = null){$items = get_versandkosten($land,'Versanduebersicht');return $items;}}?>