Current Path : /home/bitrix/ext_www/crm.klimatlend.ua/bitrix/modules/crm/lib/recycling/ |
Current File : /home/bitrix/ext_www/crm.klimatlend.ua/bitrix/modules/crm/lib/recycling/basecontrollermixin.php |
<?php namespace Bitrix\Crm\Recycling; trait BaseControllerMixin { /** * Get Entity Type ID * @return int */ abstract public function getEntityTypeID(); /** * Get Entity Type Name * @return string */ abstract public function getEntityTypeName(); /** * Get Suspended Entity Type ID * @return int */ abstract public function getSuspendedEntityTypeID(); /** * Get Suspended Entity Type Name * @return string */ abstract public function getSuspendedEntityTypeName(); }