15 lines
338 B
PHP
15 lines
338 B
PHP
<?php
|
|
|
|
class stPaczkomatyBackendComponents extends autostPaczkomatyBackendComponents
|
|
{
|
|
public function addListMenuItems(array $items)
|
|
{
|
|
if (!stDeliveryTypeConfiguration::has('inpostk'))
|
|
{
|
|
unset($items['@stPaczkomatyPlugin?action=dispatchOrderList']);
|
|
}
|
|
|
|
return $items;
|
|
}
|
|
}
|