Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/ilovecveti.ru/bitrix/modules/bizproc/lib/automation/trigger/entity/ |
Upload File : |
<?php namespace Bitrix\Bizproc\Automation\Trigger\Entity; use Bitrix\Main; /** * Class TriggerTable * * DO NOT WRITE ANYTHING BELOW THIS * * <<< ORMENTITYANNOTATION * @method static EO_Trigger_Query query() * @method static EO_Trigger_Result getByPrimary($primary, array $parameters = []) * @method static EO_Trigger_Result getById($id) * @method static EO_Trigger_Result getList(array $parameters = []) * @method static EO_Trigger_Entity getEntity() * @method static \Bitrix\Bizproc\Automation\Trigger\Entity\TriggerObject createObject($setDefaultValues = true) * @method static \Bitrix\Bizproc\Automation\Trigger\Entity\EO_Trigger_Collection createCollection() * @method static \Bitrix\Bizproc\Automation\Trigger\Entity\TriggerObject wakeUpObject($row) * @method static \Bitrix\Bizproc\Automation\Trigger\Entity\EO_Trigger_Collection wakeUpCollection($rows) */ class TriggerTable extends Main\Entity\DataManager { /** * Get table name. * @return string */ public static function getTableName() { return 'b_bp_automation_trigger'; } public static function getObjectClass() { return TriggerObject::class; } /** * Get table fields map. * @return array */ public static function getMap() { return [ 'ID' => [ 'primary' => true, 'data_type' => 'integer', 'autocomplete' => true, ], 'NAME' => ['data_type' => 'string'], 'CODE' => ['data_type' => 'string'], 'MODULE_ID' => ['data_type' => 'string'], 'ENTITY' => ['data_type' => 'string'], 'DOCUMENT_TYPE' => ['data_type' => 'string'], 'DOCUMENT_STATUS' => ['data_type' => 'string'], 'APPLY_RULES' => [ 'data_type' => 'string', 'serialized' => true, ], ]; } }