/
mikopbx
/
ModuleQueueCallBack
Обзор
Документация
Войти
/
mikopbx
/
ModuleQueueCallBack
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
v1.7
Models/ModuleQueueList.php
48 строк
907 B
apor
init
08 ноя 2021, 15:21
08 ноя 2021, 15:21
711223f
Код
Авторство
О чём код?
<?php /** * Copyright © MIKO LLC - All Rights Reserved * Unauthorized copying of this file, via any medium is strictly prohibited * Proprietary and confidential * Written by Alexey Portnov, 2 2019 */ /* * https://docs.phalconphp.com/3.4/ru-ru/db-models-metadata * */ namespace Modules\ModuleQueueCallBack\Models; use MikoPBX\Modules\Models\ModulesModelsBase; class ModuleQueueList extends ModulesModelsBase { /** * @Primary * @Identity * @Column(type="integer", nullable=false) */ public $id; /** * Text field example * * @Column(type="integer", nullable=true) */ public $idQueue; /** * Text field example * * @Column(type="integer", nullable=true) */ public $priority = '0'; public function initialize(): void { $this->setSource('m_ModuleQueueList'); parent::initialize(); } }