/
mikopbx
/
ModuleTelegramNotify
Обзор
Документация
Войти
/
mikopbx
/
ModuleTelegramNotify
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
App/Forms/ModuleTelegramNotifyForm.php
19 строк
496 B
Nikolay Beketov
initial
24 ноя 2020, 18:52
24 ноя 2020, 18:52
8f53d75
Код
Авторство
О чём код?
<?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, 12 2018 */ namespace Modules\ModuleTelegramNotify\App\Forms; use Phalcon\Forms\Element\Text; use Phalcon\Forms\Form; class ModuleTelegramNotifyForm extends Form { public function initialize($entity = null, $options = null): void { $this->add(new Text('telegram_api_token')); } }