Also for example I found AdminOrdersController.php apparently it has to do with the Myparcel module. But an old version? Well i don't find this file in the module on github: https://github.com/myparcelnl/prestashop
Can I assume that it is obsolete?
<?php
class AdminOrdersController extends AdminOrdersControllerCore
{
public function sendChangedNotification(Order $order = null)
{
return false;
}
/*
* module: myparcel
* date: 2017-09-05 09:54:47
* version: 2.0.7
*/
public function __construct()
{
parent::__construct();
$myParcelFlag = Configuration::get('MYPARCEL_ACTIVE');
$this->context->smarty->assign(
array(
'myParcel' => $myParcelFlag,
'prestaShopVersion' => substr(_PS_VERSION_, 0, 3),
)
);
if (true == $myParcelFlag) {
if ('' == session_id()) {
session_start();
}
$_SESSION['MYPARCEL_VISIBLE_CONSIGNMENTS'] = '';
}
}
}