21 lines
439 B
PHP
21 lines
439 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\DropshipBundle\Transfer;
|
|
|
|
class BaseLinkerTransfer extends GenericTransfer
|
|
{
|
|
protected static string $type = 'baselinker';
|
|
protected static string $name = 'BaseLinker';
|
|
|
|
public function isRunnable(): bool
|
|
{
|
|
if (($this->configuration['use_baselinker_integration'] ?? 'N') === 'Y') {
|
|
return false;
|
|
}
|
|
|
|
return parent::isRunnable();
|
|
}
|
|
}
|