Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 2354 Revision 2360
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 2354 2018-10-03 15:20:46Z lars $
13
//$Id: Logistiker.php 2360 2018-10-03 17:38:41Z 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", $webs["datenbank"],
23
		$remoteServer_dbh );
23
			$remoteServer_dbh);
24
		$GLOBALS["ui"]->assign( "upload", $upload );
24
		$GLOBALS["ui"]->assign("upload", $upload);
25
		$default = column_exists( "logistiker", "is_default", $webs["datenbank"], $remoteServer_dbh );
-
 
26
		$GLOBALS["ui"]->assign( "default", $default );
25
		$default = column_exists("logistiker", "is_default", $webs["datenbank"], $remoteServer_dbh);
27
		$emailAbspeichern = column_exists( "logistiker", "email", $webs["datenbank"],
26
		$GLOBALS["ui"]->assign("default", $default);
28
		$remoteServer_dbh );
27
		$emailAbspeichern = column_exists("logistiker", "email", $webs["datenbank"], $remoteServer_dbh);
29
		$GLOBALS["ui"]->assign( "emailAbspeichern", $emailAbspeichern );*/
28
		$GLOBALS["ui"]->assign("emailAbspeichern", $emailAbspeichern);
30
	}
29
	}
31
	/**
30
	/**