├── .gitignore ├── Makefile ├── Template ├── chat │ ├── widget.php │ ├── form.php │ └── messages.php ├── config │ └── application.php └── layout │ └── bottom.php ├── Locale ├── ru_RU │ └── translations.php ├── de_DE │ └── translations.php ├── fr_FR │ └── translations.php └── hu_HU │ └── translations.php ├── Test ├── Model │ ├── BaseModelTest.php │ ├── ChatMessageModelTest.php │ └── ChatUserModelTest.php └── PluginTest.php ├── Helper ├── ChatHelper.php └── ChatMarkdown.php ├── .travis.yml ├── Schema ├── Sqlite.php ├── Postgres.php └── Mysql.php ├── LICENSE ├── Plugin.php ├── README.md ├── Controller └── ChatController.php ├── Model ├── ChatMessageModel.php └── ChatUserModel.php └── Assets ├── chat.css └── chat.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | plugin=Chat 2 | 3 | all: 4 | @ echo "Build archive for plugin ${plugin} version=${version}" 5 | @ git archive HEAD --prefix=${plugin}/ --format=zip -o ${plugin}-${version}.zip 6 | -------------------------------------------------------------------------------- /Template/chat/widget.php: -------------------------------------------------------------------------------- 1 |