Revision 2246 | Revision 2273 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?php/*** User** @package* @author WebanOS CI* @copyright Lars Tiefland* @version 2018* @access public*///$Id: Logistiker.php 2250 2018-10-02 18:19:59Z lars $class Logistiker extends CI_Controller{public function __construct(){parent::__construct();$this->load->model('logistiker_model', 'logistiker');/*$upload = column_exists( "logistiker", "import_verzeichnis", $webs["datenbank"],$remoteServer_dbh );$GLOBALS["ui"]->assign( "upload", $upload );$default = column_exists( "logistiker", "is_default", $webs["datenbank"], $remoteServer_dbh );$GLOBALS["ui"]->assign( "default", $default );$emailAbspeichern = column_exists( "logistiker", "email", $webs["datenbank"],$remoteServer_dbh );$GLOBALS["ui"]->assign( "emailAbspeichern", $emailAbspeichern );*/}/*** User::index()** @return*/public function index(){$logistiker = $this->logistiker->get_list();$this->smarty->assign("logistiker", $logistiker);$this->smarty->view('logistiker.tpl');}/*** User::edit()** @param mixed $id* @return void*/public function edit($id = null){$this->smarty->view('single_order.tpl');}public function save(){$this->logistiker->save();}public function del($id = null){}}