Subversion-Projekte lars-tiefland.ci

Revision

Revision 2361 | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 2361 Revision 2362
Zeile 8... Zeile 8...
8
 * @copyright Lars Tiefland
8
 * @copyright Lars Tiefland
9
 * @version 2018
9
 * @version 2018
10
 * @access public
10
 * @access public
11
 */
11
 */
Zeile 12... Zeile 12...
12
 
12
 
Zeile 13... Zeile 13...
13
//$Id: Logistiker.php 2361 2018-10-03 17:39:29Z lars $
13
//$Id: Logistiker.php 2362 2018-10-03 17:49:38Z lars $
14
 
14
 
Zeile 15... Zeile 15...
15
class Logistiker extends CI_Controller
15
class Logistiker extends CI_Controller
16
{
16
{
17
 
17
 
18
	public function __construct()
18
	public function __construct()
19
	{
19
	{
20
		parent::__construct();
20
		parent::__construct();
21
		$this->load->model('logistiker_model', 'logistiker');
21
		$this->load->model('logistiker_model', 'logistiker');
22
		$upload = column_exists("logistiker", "import_verzeichnis", $webs["datenbank"],
22
		$upload = column_exists("logistiker", "import_verzeichnis", $GLOBALS["webs"]["datenbank"],
-
 
23
			$this->db);
23
			$remoteServer_dbh);
24
		$this->smarty->assign("upload", $upload);
24
		$this->smarty->assign("upload", $upload);
25
		$default = column_exists("logistiker", "is_default", $GLOBALS["webs"]["datenbank"],
-
 
26
			$this->db);
25
		$default = column_exists("logistiker", "is_default", $webs["datenbank"], $remoteServer_dbh);
27
		$this->smarty->assign("default", $default);
26
		$this->smarty->assign("default", $default);
28
		$emailAbspeichern = column_exists("logistiker", "email", $GLOBALS["webs"]["datenbank"],
27
		$emailAbspeichern = column_exists("logistiker", "email", $webs["datenbank"], $remoteServer_dbh);
29
			$this->db);
28
		$this->smarty->assign("emailAbspeichern", $emailAbspeichern);
30
		$this->smarty->assign("emailAbspeichern", $emailAbspeichern);
29
	}
31
	}