45 lines
967 B
PHP
45 lines
967 B
PHP
<?php
|
|
/**
|
|
* 2008-2015 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* Read in the module
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author Mediacom87 <support@mediacom87.net>
|
|
* @copyright 2008-2015 Mediacom87
|
|
* @license define in the module
|
|
* @version 1.3.8
|
|
*/
|
|
|
|
if (class_exists('AdminTabCore', false)) {
|
|
include_once(dirname(__FILE__).'/../../classes/AdminTab.php');
|
|
}
|
|
|
|
/**
|
|
* AdminGlsTracking class.
|
|
*
|
|
* @extends AdminTab
|
|
*/
|
|
class AdminGlsTracking extends AdminTab
|
|
{
|
|
/**
|
|
* display function.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function display()
|
|
{
|
|
if ($module = Module::getInstanceByName('glstrackingnumber')) {
|
|
echo $module->getContent(get_class($this), 'order');
|
|
}
|
|
}
|
|
}
|