├── .gitignore ├── controllers ├── chats │ ├── index.htm │ ├── _list_toolbar.htm │ ├── config_list.yaml │ ├── _control.htm │ └── _send_modal.htm ├── users │ ├── index.htm │ ├── _list_toolbar.htm │ └── config_list.yaml ├── messages │ ├── index.htm │ ├── _list_toolbar.htm │ └── config_list.yaml ├── Users.php ├── Messages.php └── Chats.php ├── plot ├── config-snippets1.png ├── grid.cfg ├── xyborder.cfg ├── mathematics.cfg ├── dark2.pal └── config-snippets1.gnu ├── .editorconfig ├── classes ├── widgetdesigntimeprovider │ └── partials │ │ └── _control-telechat.htm ├── WidgetDesignTimeProvider.php ├── RegisterWidgets.php └── TelegramApi.php ├── formwidgets ├── checkwebhook │ └── partials │ │ ├── _body.htm │ │ └── _wnd.htm ├── telegramchat │ └── partials │ │ └── _body.htm ├── CheckWebhook.php └── TelegramChat.php ├── commands ├── UserCommand.php ├── AdminCommand.php ├── SystemCommands │ ├── LeftchatmemberCommand.php │ ├── NewchatphotoCommand.php │ ├── NewchattitleCommand.php │ ├── DeletechatphotoCommand.php │ ├── MigratetochatidCommand.php │ ├── GroupchatcreatedCommand.php │ ├── MigratefromchatidCommand.php │ ├── ChannelchatcreatedCommand.php │ ├── SupergroupchatcreatedCommand.php │ ├── EditedmessageCommand.php │ ├── ChoseninlineresultCommand.php │ ├── StartCommand.php │ ├── NewchatmemberCommand.php │ ├── CallbackqueryCommand.php │ ├── GenericCommand.php │ ├── GenericmessageCommand.php │ └── InlinequeryCommand.php ├── SystemCommand.php └── UserCommands │ └── HelpCommand.php ├── models ├── message │ └── columns.yaml ├── user │ └── columns.yaml ├── chat │ └── columns.yaml ├── User.php ├── Message.php ├── Chat.php ├── telegraminfosettings │ └── fields.yaml └── TelegramInfoSettings.php ├── composer.json ├── updates ├── version.yaml ├── builder_table_create_theone74_telegram_botan_shortener.php ├── builder_table_create_theone74_telegram_user.php ├── builder_table_create_theone74_telegram_chat.php ├── builder_table_create_theone74_telegram_inline_query.php ├── builder_table_create_theone74_telegram_user_chat.php ├── builder_table_create_theone74_telegram_callback_query.php ├── builder_table_create_theone74_telegram_chosen_inline_result.php ├── fix_callback_query.php ├── builder_table_create_theone74_telegram_conversation.php ├── builder_table_create_theone74_telegram_edited_message.php ├── builder_table_create_theone74_telegram_telegram_update.php └── builder_table_create_theone74_telegram_message.php ├── LICENSE ├── routes.php ├── README.md ├── Plugin.php ├── plugin.yaml └── lang ├── en └── lang.php └── ru └── lang.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /controllers/chats/index.htm: -------------------------------------------------------------------------------- 1 | = $this->listRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/users/index.htm: -------------------------------------------------------------------------------- 1 | = $this->listRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/messages/index.htm: -------------------------------------------------------------------------------- 1 | = $this->listRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/chats/_list_toolbar.htm: -------------------------------------------------------------------------------- 1 |