Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 2353 Revision 2354
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 2353 2018-10-03 15:20:00Z lars $
13
//$Id: Logistiker.php 2354 2018-10-03 15:20:46Z lars $
14
 
14
 
Zeile 15... Zeile 15...
15
class Logistiker extends CI_Controller
15
class Logistiker extends CI_Controller
Zeile 72... Zeile 72...
72
		}
72
		}
73
	}
73
	}
Zeile 74... Zeile 74...
74
 
74
 
75
	public function export($id)
75
	public function export($id)
76
	{
76
	{
77
		$tracking="";
77
		$tracking = json_encode("");
78
		if ($id) {
78
		if ($id) {
79
			$tracking = $this->logistiker->export($id);
79
			$tracking = $this->logistiker->export($id);
80
		}
80
		}
81
		echo $tracking;
81
		echo $tracking;
Zeile 82... Zeile 82...
82
	}
82
	}
83
 
83
 
84
	public function tracking($id)
84
	public function tracking($id)
85
	{
85
	{
86
		$tracking="";
86
		$tracking = json_encode("");
87
		if ($id) {
87
		if ($id) {
88
			$tracking = $this->logistiker->tracking($id);
88
			$tracking = $this->logistiker->tracking($id);
89
		}
89
		}