19 lines
534 B
PHP
19 lines
534 B
PHP
<?php
|
|
|
|
namespace KupShop\KupShopBundle\Email;
|
|
|
|
class LatePackageEmail extends OrderEmail
|
|
{
|
|
protected static $name = 'Notifikace o zpožděném odeslání';
|
|
protected static $type = 'LATE_PACKAGE';
|
|
protected static $priority = 3;
|
|
|
|
protected $subject = 'Zpoždění odeslání';
|
|
protected $template = 'email/email_late_package.tpl';
|
|
|
|
public static function isAllowed()
|
|
{
|
|
return findModule(\Modules::ORDERS, \Modules::SUB_NOTIFY_LATE_PACKAGE) || findModule(\Modules::AUTOMATION_CONFIGURATOR);
|
|
}
|
|
}
|