* @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class AdminCarrierWizardControllerCore extends AdminController { public function __construct() { $this->display = 'view'; parent::__construct(); } public function setMedia() { parent::setMedia(); $this->addJqueryPlugin('smartWizard'); } public function renderView() { return parent::renderView(); } }