本文整理汇总了PHP中eZWorkflowEventType::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP eZWorkflowEventType::__construct方法的具体用法?PHP eZWorkflowEventType::__construct怎么用?PHP eZWorkflowEventType::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZWorkflowEventType
的用法示例。
在下文中一共展示了eZWorkflowEventType::__construct方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
function __construct()
{
parent::__construct(
self::WORKFLOW_TYPE_STRING,
ezpI18n::tr( 'kernel/workflow/event', 'eZ Page swap workflow event' )
);
$this->setTriggerTypes( array( 'content' => array( 'swap' => array ( 'after' ) ) ) );
}
示例2: array
function __construct()
{
parent::__construct(eZApproveType::WORKFLOW_TYPE_STRING, ezpI18n::tr('kernel/workflow/event', "Approve"));
$this->setTriggerTypes(array('content' => array('publish' => array('before'))));
}
示例3:
function __construct()
{
$this->logger = eZPaymentLogger::CreateForAdd("var/log/eZPaymentGatewayType.log");
parent::__construct(eZPaymentGatewayType::WORKFLOW_TYPE_STRING, ezpI18n::tr('kernel/workflow/event', "Payment Gateway"));
$this->loadAndRegisterGateways();
}
示例4: __construct
public function __construct()
{
parent::__construct(eZFinishUserRegisterType::WORKFLOW_TYPE_STRING, ezpI18n::tr('kernel/workflow/event', "Finish User Registration"));
$this->setTriggerTypes(array('content' => array('publish' => array('after'))));
}
示例5:
function __construct()
{
parent::__construct(eZMultiplexerType::WORKFLOW_TYPE_STRING, ezpI18n::tr('kernel/workflow/event', 'Multiplexer'));
}
示例6: array
function __construct()
{
parent::__construct(eZSimpleShippingType::WORKFLOW_TYPE_STRING, ezpI18n::tr('kernel/workflow/event', "Simple shipping"));
$this->setTriggerTypes(array('shop' => array('confirmorder' => array('before'))));
}
示例7: array
function __construct()
{
parent::__construct(eZWaitUntilDateType::WORKFLOW_TYPE_STRING, ezpI18n::tr('kernel/workflow/event', "Wait until date"));
$this->setTriggerTypes(array('content' => array('publish' => array('before', 'after'))));
}
示例8: __construct
public function __construct()
{
parent::__construct(self::EZ_WORKFLOW_TYPE_STRING, "Netgen Push Redirect");
}