├── README.md ├── acp ├── acp_mchat_info.php └── acp_mchat_module.php ├── adm └── style │ ├── acp_mchat_globalsettings.html │ ├── acp_mchat_globalusersettings.html │ ├── acp_mchat_globalusersettings_content.html │ └── event │ └── acp_users_prefs_append.html ├── composer.json ├── config ├── routing.yml ├── services.yml └── tables.yml ├── controller ├── acp_controller.php └── ucp_controller.php ├── core ├── functions.php ├── log.php ├── mchat.php ├── notifications.php └── settings.php ├── cron └── mchat_prune.php ├── event ├── acp_listener.php └── main_listener.php ├── ext.php ├── language └── en │ ├── common.php │ ├── info_acp_mchat.php │ ├── info_ucp_mchat.php │ ├── mchat.php │ ├── mchat_acp.php │ ├── mchat_ucp.php │ └── permissions_mchat.php ├── license.txt ├── migrations ├── mchat_2_0_0.php ├── mchat_2_0_0_rc3.php ├── mchat_2_0_0_rc4.php ├── mchat_2_0_0_rc5.php ├── mchat_2_0_0_rc6.php ├── mchat_2_0_0_rc7.php ├── mchat_2_0_1.php ├── mchat_2_0_2.php ├── mchat_2_0_3.php ├── mchat_2_1_0.php ├── mchat_2_1_0_rc1.php ├── mchat_2_1_1.php ├── mchat_2_1_2.php ├── mchat_2_1_3.php ├── mchat_2_1_4.php ├── mchat_2_1_4_rc1.php └── mchat_2_1_4_rc2.php ├── sounds ├── README.txt ├── add.mp3 ├── del.mp3 ├── edit.mp3 └── error.mp3 ├── styles ├── Absolution │ ├── template │ │ └── event │ │ │ └── overall_footer_after.html │ └── theme │ │ └── mchat_absolution.css ├── AllanStyle-SUBSILVER │ ├── template │ │ └── event │ │ │ └── overall_footer_page_body_after.html │ └── theme │ │ └── mchat_allanstyle.css ├── CleanSilver │ ├── template │ │ └── event │ │ │ └── overall_footer_after.html │ └── theme │ │ └── mchat_cleansilver.css ├── HexagonReborn │ ├── template │ │ └── event │ │ │ └── overall_footer_after.html │ └── theme │ │ └── mchat_hexagonreborn.css ├── MyInvision │ ├── template │ │ └── event │ │ │ └── overall_footer_after.html │ └── theme │ │ └── mchat_myinvision.css ├── Project_Durango │ ├── template │ │ └── event │ │ │ └── overall_footer_after.html │ └── theme │ │ └── mchat_projectdurango.css ├── SE_Gamer │ ├── template │ │ └── event │ │ │ └── overall_footer_after.html │ └── theme │ │ └── mchat_se_gamer.css ├── all │ └── template │ │ ├── javascript │ │ ├── autosize.min.js │ │ ├── jquery.titlealert.min.js │ │ ├── mchat.collapse.arty.js │ │ └── mchat.js │ │ └── mchat_script_data.html ├── basic │ └── template │ │ └── event │ │ └── overall_footer_after.html ├── black │ └── template │ │ └── event │ │ └── overall_footer_after.html ├── digi │ └── template │ │ └── event │ │ └── overall_footer_after.html ├── elegance │ └── template │ │ └── event │ │ └── overall_footer_after.html ├── latte │ └── template │ │ └── event │ │ └── overall_footer_after.html ├── prosilver │ ├── template │ │ ├── event │ │ │ ├── index_body_block_online_append.html │ │ │ ├── index_body_forumlist_body_after.html │ │ │ ├── index_body_markforums_before.html │ │ │ ├── overall_footer_copyright_append.html │ │ │ ├── overall_header_head_append.html │ │ │ ├── overall_header_navigation_append.html │ │ │ └── overall_header_stylesheets_after.html │ │ ├── mchat_body.html │ │ ├── mchat_header.html │ │ ├── mchat_messages.html │ │ ├── mchat_messages_icons.html │ │ ├── mchat_navlink.html │ │ ├── mchat_panel.html │ │ ├── mchat_rules.html │ │ ├── mchat_status.html │ │ ├── mchat_title.html │ │ ├── mchat_whois.html │ │ └── ucp_mchat.html │ └── theme │ │ ├── mchat.arty.css │ │ └── mchat.css ├── simplicity │ └── template │ │ └── event │ │ └── overall_footer_after.html └── we_universal │ ├── template │ └── event │ │ ├── navbar_header_logged_out_content.html │ │ ├── navbar_header_user_profile_append.html │ │ ├── overall_footer_after.html │ │ └── overall_header_navigation_append.html │ └── theme │ └── mchat_we_universal.css ├── textreparser └── plugins │ └── mchat_messages.php └── ucp ├── ucp_mchat_info.php └── ucp_mchat_module.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/README.md -------------------------------------------------------------------------------- /acp/acp_mchat_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/acp/acp_mchat_info.php -------------------------------------------------------------------------------- /acp/acp_mchat_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/acp/acp_mchat_module.php -------------------------------------------------------------------------------- /adm/style/acp_mchat_globalsettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/adm/style/acp_mchat_globalsettings.html -------------------------------------------------------------------------------- /adm/style/acp_mchat_globalusersettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/adm/style/acp_mchat_globalusersettings.html -------------------------------------------------------------------------------- /adm/style/acp_mchat_globalusersettings_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/adm/style/acp_mchat_globalusersettings_content.html -------------------------------------------------------------------------------- /adm/style/event/acp_users_prefs_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/adm/style/event/acp_users_prefs_append.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/composer.json -------------------------------------------------------------------------------- /config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/config/routing.yml -------------------------------------------------------------------------------- /config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/config/services.yml -------------------------------------------------------------------------------- /config/tables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/config/tables.yml -------------------------------------------------------------------------------- /controller/acp_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/controller/acp_controller.php -------------------------------------------------------------------------------- /controller/ucp_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/controller/ucp_controller.php -------------------------------------------------------------------------------- /core/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/core/functions.php -------------------------------------------------------------------------------- /core/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/core/log.php -------------------------------------------------------------------------------- /core/mchat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/core/mchat.php -------------------------------------------------------------------------------- /core/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/core/notifications.php -------------------------------------------------------------------------------- /core/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/core/settings.php -------------------------------------------------------------------------------- /cron/mchat_prune.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/cron/mchat_prune.php -------------------------------------------------------------------------------- /event/acp_listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/event/acp_listener.php -------------------------------------------------------------------------------- /event/main_listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/event/main_listener.php -------------------------------------------------------------------------------- /ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/ext.php -------------------------------------------------------------------------------- /language/en/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/language/en/common.php -------------------------------------------------------------------------------- /language/en/info_acp_mchat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/language/en/info_acp_mchat.php -------------------------------------------------------------------------------- /language/en/info_ucp_mchat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/language/en/info_ucp_mchat.php -------------------------------------------------------------------------------- /language/en/mchat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/language/en/mchat.php -------------------------------------------------------------------------------- /language/en/mchat_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/language/en/mchat_acp.php -------------------------------------------------------------------------------- /language/en/mchat_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/language/en/mchat_ucp.php -------------------------------------------------------------------------------- /language/en/permissions_mchat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/language/en/permissions_mchat.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/license.txt -------------------------------------------------------------------------------- /migrations/mchat_2_0_0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_0.php -------------------------------------------------------------------------------- /migrations/mchat_2_0_0_rc3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_0_rc3.php -------------------------------------------------------------------------------- /migrations/mchat_2_0_0_rc4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_0_rc4.php -------------------------------------------------------------------------------- /migrations/mchat_2_0_0_rc5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_0_rc5.php -------------------------------------------------------------------------------- /migrations/mchat_2_0_0_rc6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_0_rc6.php -------------------------------------------------------------------------------- /migrations/mchat_2_0_0_rc7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_0_rc7.php -------------------------------------------------------------------------------- /migrations/mchat_2_0_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_1.php -------------------------------------------------------------------------------- /migrations/mchat_2_0_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_2.php -------------------------------------------------------------------------------- /migrations/mchat_2_0_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_0_3.php -------------------------------------------------------------------------------- /migrations/mchat_2_1_0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_1_0.php -------------------------------------------------------------------------------- /migrations/mchat_2_1_0_rc1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_1_0_rc1.php -------------------------------------------------------------------------------- /migrations/mchat_2_1_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_1_1.php -------------------------------------------------------------------------------- /migrations/mchat_2_1_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_1_2.php -------------------------------------------------------------------------------- /migrations/mchat_2_1_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_1_3.php -------------------------------------------------------------------------------- /migrations/mchat_2_1_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_1_4.php -------------------------------------------------------------------------------- /migrations/mchat_2_1_4_rc1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_1_4_rc1.php -------------------------------------------------------------------------------- /migrations/mchat_2_1_4_rc2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/migrations/mchat_2_1_4_rc2.php -------------------------------------------------------------------------------- /sounds/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/sounds/README.txt -------------------------------------------------------------------------------- /sounds/add.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/sounds/add.mp3 -------------------------------------------------------------------------------- /sounds/del.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/sounds/del.mp3 -------------------------------------------------------------------------------- /sounds/edit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/sounds/edit.mp3 -------------------------------------------------------------------------------- /sounds/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/sounds/error.mp3 -------------------------------------------------------------------------------- /styles/Absolution/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/Absolution/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/Absolution/theme/mchat_absolution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/Absolution/theme/mchat_absolution.css -------------------------------------------------------------------------------- /styles/AllanStyle-SUBSILVER/template/event/overall_footer_page_body_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/AllanStyle-SUBSILVER/template/event/overall_footer_page_body_after.html -------------------------------------------------------------------------------- /styles/AllanStyle-SUBSILVER/theme/mchat_allanstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/AllanStyle-SUBSILVER/theme/mchat_allanstyle.css -------------------------------------------------------------------------------- /styles/CleanSilver/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/CleanSilver/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/CleanSilver/theme/mchat_cleansilver.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/CleanSilver/theme/mchat_cleansilver.css -------------------------------------------------------------------------------- /styles/HexagonReborn/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/HexagonReborn/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/HexagonReborn/theme/mchat_hexagonreborn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/HexagonReborn/theme/mchat_hexagonreborn.css -------------------------------------------------------------------------------- /styles/MyInvision/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/MyInvision/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/MyInvision/theme/mchat_myinvision.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/MyInvision/theme/mchat_myinvision.css -------------------------------------------------------------------------------- /styles/Project_Durango/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/Project_Durango/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/Project_Durango/theme/mchat_projectdurango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/Project_Durango/theme/mchat_projectdurango.css -------------------------------------------------------------------------------- /styles/SE_Gamer/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/SE_Gamer/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/SE_Gamer/theme/mchat_se_gamer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/SE_Gamer/theme/mchat_se_gamer.css -------------------------------------------------------------------------------- /styles/all/template/javascript/autosize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/all/template/javascript/autosize.min.js -------------------------------------------------------------------------------- /styles/all/template/javascript/jquery.titlealert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/all/template/javascript/jquery.titlealert.min.js -------------------------------------------------------------------------------- /styles/all/template/javascript/mchat.collapse.arty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/all/template/javascript/mchat.collapse.arty.js -------------------------------------------------------------------------------- /styles/all/template/javascript/mchat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/all/template/javascript/mchat.js -------------------------------------------------------------------------------- /styles/all/template/mchat_script_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/all/template/mchat_script_data.html -------------------------------------------------------------------------------- /styles/basic/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/basic/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/black/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/black/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/digi/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/digi/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/elegance/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/elegance/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/latte/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/latte/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/prosilver/template/event/index_body_block_online_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/event/index_body_block_online_append.html -------------------------------------------------------------------------------- /styles/prosilver/template/event/index_body_forumlist_body_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/event/index_body_forumlist_body_after.html -------------------------------------------------------------------------------- /styles/prosilver/template/event/index_body_markforums_before.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/event/index_body_markforums_before.html -------------------------------------------------------------------------------- /styles/prosilver/template/event/overall_footer_copyright_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/event/overall_footer_copyright_append.html -------------------------------------------------------------------------------- /styles/prosilver/template/event/overall_header_head_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/event/overall_header_head_append.html -------------------------------------------------------------------------------- /styles/prosilver/template/event/overall_header_navigation_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/event/overall_header_navigation_append.html -------------------------------------------------------------------------------- /styles/prosilver/template/event/overall_header_stylesheets_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/event/overall_header_stylesheets_after.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_body.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_header.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_messages.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_messages_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_messages_icons.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_navlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_navlink.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_panel.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_rules.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_status.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_title.html -------------------------------------------------------------------------------- /styles/prosilver/template/mchat_whois.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/mchat_whois.html -------------------------------------------------------------------------------- /styles/prosilver/template/ucp_mchat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/template/ucp_mchat.html -------------------------------------------------------------------------------- /styles/prosilver/theme/mchat.arty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/theme/mchat.arty.css -------------------------------------------------------------------------------- /styles/prosilver/theme/mchat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/prosilver/theme/mchat.css -------------------------------------------------------------------------------- /styles/simplicity/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/simplicity/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/we_universal/template/event/navbar_header_logged_out_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/we_universal/template/event/navbar_header_logged_out_content.html -------------------------------------------------------------------------------- /styles/we_universal/template/event/navbar_header_user_profile_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/we_universal/template/event/navbar_header_user_profile_append.html -------------------------------------------------------------------------------- /styles/we_universal/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/we_universal/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /styles/we_universal/template/event/overall_header_navigation_append.html: -------------------------------------------------------------------------------- 1 | {# empty #} 2 | -------------------------------------------------------------------------------- /styles/we_universal/theme/mchat_we_universal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/styles/we_universal/theme/mchat_we_universal.css -------------------------------------------------------------------------------- /textreparser/plugins/mchat_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/textreparser/plugins/mchat_messages.php -------------------------------------------------------------------------------- /ucp/ucp_mchat_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/ucp/ucp_mchat_info.php -------------------------------------------------------------------------------- /ucp/ucp_mchat_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmzx/mChat/HEAD/ucp/ucp_mchat_module.php --------------------------------------------------------------------------------