├── README.md ├── browsers-extensions └── chrome │ └── lhc │ ├── lhc_packed │ ├── changelog.txt │ ├── lhc.crx │ └── readme.txt │ └── lhc_src │ ├── background.html │ ├── background_process.html │ ├── icon.png │ ├── icon128.png │ ├── icon16.png │ ├── icon48.png │ ├── manifest.json │ ├── options.html │ ├── options.js │ ├── options_background.js │ ├── options_background_process.js │ ├── options_options.js │ ├── options_popup.js │ └── popup.html ├── customstatus ├── bootstrap │ └── bootstrap.php ├── callbacks │ ├── close_chat.php │ ├── new_chat.php │ └── unanswered_chat.php ├── classes │ └── .gitignore ├── design │ └── customstatustheme │ │ ├── css │ │ └── README │ │ ├── images │ │ └── README │ │ ├── js │ │ └── customjs.js │ │ └── tpl │ │ ├── lhchat │ │ └── README │ │ ├── lhdummy │ │ └── test.tpl.php │ │ └── pagelayouts │ │ └── parts │ │ ├── page_head_css_extension_multiinclude.tpl.php │ │ └── page_head_js_extension_multiinclude.tpl.php ├── doc │ └── README └── modules │ ├── lhcron │ └── customcron.php │ ├── lhdummy │ ├── module.php │ └── test.php │ └── lhuser │ ├── login.php │ └── module.php ├── lhccustomvariables ├── README.md └── bootstrap │ └── bootstrap.php ├── overridecss ├── design │ └── overridecsstheme │ │ └── css │ │ ├── override.css │ │ ├── override_rtl.css │ │ ├── widget_override.css │ │ └── widgetv2 │ │ ├── embed_override.css │ │ ├── status_override.css │ │ ├── widget_mobile_override.css │ │ ├── widget_override.css │ │ └── widget_override_rtl.css └── doc │ └── README ├── overridetranslation └── translations │ ├── en_EN │ └── translation.ts │ └── lt_LT │ └── translation.ts ├── sceditor ├── classes │ └── lhbbcode │ │ └── lhbbcode.php ├── design │ └── sceditortheme │ │ ├── css │ │ ├── sceditor.default.css │ │ └── sceditor.theme.css │ │ ├── images │ │ ├── famfamfam.png │ │ └── smileys │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 100.gif │ │ │ ├── 101.gif │ │ │ ├── 102.gif │ │ │ ├── 103.gif │ │ │ ├── 104.gif │ │ │ ├── 105.gif │ │ │ ├── 109.gif │ │ │ ├── 11.gif │ │ │ ├── 110.gif │ │ │ ├── 111.gif │ │ │ ├── 112.gif │ │ │ ├── 113.gif │ │ │ ├── 114.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 5.gif │ │ │ ├── 6.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ ├── 9.gif │ │ │ ├── cheer.gif │ │ │ └── studying.gif │ │ ├── js │ │ ├── jquery.sceditor.bbcode.js │ │ └── sceditor.js │ │ └── tpl │ │ ├── lhchat │ │ ├── adminchat.tpl.php │ │ ├── chat.tpl.php │ │ └── part │ │ │ └── action_block.tpl.php │ │ ├── lhchatbox │ │ └── chatwidget.tpl.php │ │ └── pagelayouts │ │ ├── .gitignore │ │ └── parts │ │ ├── page_head_css_extension.tpl.php │ │ └── page_head_js_extension.tpl.php └── doc │ └── readme.txt ├── sevabot ├── bootstrap │ └── bootstrap.php ├── doc │ └── readme.txt ├── modules │ └── lhsevabot │ │ ├── module.php │ │ └── test.php └── settings │ └── settings.ini.php ├── unbrand ├── design │ └── unbrandtheme │ │ ├── README.md │ │ ├── css │ │ ├── .gitignore │ │ ├── override.css │ │ ├── override_rtl.css │ │ └── widget_override.css │ │ ├── images │ │ ├── favicon.ico │ │ ├── general │ │ │ ├── logo.png │ │ │ ├── logo_grey.png │ │ │ └── logo_user.png │ │ └── notification │ │ │ └── notification.png │ │ ├── js │ │ └── .gitignore │ │ └── tpl │ │ ├── lhchat │ │ └── widget_brand │ │ │ ├── chatbox.tpl.php │ │ │ ├── faq.tpl.php │ │ │ ├── live_help.tpl.php │ │ │ └── questionary.tpl.php │ │ └── pagelayouts │ │ └── parts │ │ ├── copyright_meta.tpl.php │ │ ├── page_footer.tpl.php │ │ └── page_footer_user.tpl.php └── doc │ └── README └── verifyuser └── bootstrap └── bootstrap.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/README.md -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_packed/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_packed/changelog.txt -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_packed/lhc.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_packed/lhc.crx -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_packed/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_packed/readme.txt -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/background.html -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/background_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/background_process.html -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/icon.png -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/icon128.png -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/icon16.png -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/icon48.png -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/manifest.json -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/options.html -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/options.js -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/options_background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/options_background.js -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/options_background_process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/options_background_process.js -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/options_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/options_options.js -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/options_popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/options_popup.js -------------------------------------------------------------------------------- /browsers-extensions/chrome/lhc/lhc_src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/browsers-extensions/chrome/lhc/lhc_src/popup.html -------------------------------------------------------------------------------- /customstatus/bootstrap/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/bootstrap/bootstrap.php -------------------------------------------------------------------------------- /customstatus/callbacks/close_chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/callbacks/close_chat.php -------------------------------------------------------------------------------- /customstatus/callbacks/new_chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/callbacks/new_chat.php -------------------------------------------------------------------------------- /customstatus/callbacks/unanswered_chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/callbacks/unanswered_chat.php -------------------------------------------------------------------------------- /customstatus/classes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/classes/.gitignore -------------------------------------------------------------------------------- /customstatus/design/customstatustheme/css/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/design/customstatustheme/css/README -------------------------------------------------------------------------------- /customstatus/design/customstatustheme/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/design/customstatustheme/images/README -------------------------------------------------------------------------------- /customstatus/design/customstatustheme/js/customjs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customstatus/design/customstatustheme/tpl/lhchat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/design/customstatustheme/tpl/lhchat/README -------------------------------------------------------------------------------- /customstatus/design/customstatustheme/tpl/lhdummy/test.tpl.php: -------------------------------------------------------------------------------- 1 | Dummy module content -------------------------------------------------------------------------------- /customstatus/design/customstatustheme/tpl/pagelayouts/parts/page_head_css_extension_multiinclude.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customstatus/design/customstatustheme/tpl/pagelayouts/parts/page_head_js_extension_multiinclude.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/design/customstatustheme/tpl/pagelayouts/parts/page_head_js_extension_multiinclude.tpl.php -------------------------------------------------------------------------------- /customstatus/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/doc/README -------------------------------------------------------------------------------- /customstatus/modules/lhcron/customcron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/modules/lhcron/customcron.php -------------------------------------------------------------------------------- /customstatus/modules/lhdummy/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/modules/lhdummy/module.php -------------------------------------------------------------------------------- /customstatus/modules/lhdummy/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/modules/lhdummy/test.php -------------------------------------------------------------------------------- /customstatus/modules/lhuser/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/modules/lhuser/login.php -------------------------------------------------------------------------------- /customstatus/modules/lhuser/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/customstatus/modules/lhuser/module.php -------------------------------------------------------------------------------- /lhccustomvariables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/lhccustomvariables/README.md -------------------------------------------------------------------------------- /lhccustomvariables/bootstrap/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/lhccustomvariables/bootstrap/bootstrap.php -------------------------------------------------------------------------------- /overridecss/design/overridecsstheme/css/override.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overridecss/design/overridecsstheme/css/override_rtl.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overridecss/design/overridecsstheme/css/widget_override.css: -------------------------------------------------------------------------------- 1 | #messagesBlock{ 2 | height:250px; 3 | } -------------------------------------------------------------------------------- /overridecss/design/overridecsstheme/css/widgetv2/embed_override.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overridecss/design/overridecsstheme/css/widgetv2/status_override.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overridecss/design/overridecsstheme/css/widgetv2/widget_mobile_override.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overridecss/design/overridecsstheme/css/widgetv2/widget_override.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overridecss/design/overridecsstheme/css/widgetv2/widget_override_rtl.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overridecss/doc/README: -------------------------------------------------------------------------------- 1 | This is example how to override basic CSS files. -------------------------------------------------------------------------------- /overridetranslation/translations/en_EN/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/overridetranslation/translations/en_EN/translation.ts -------------------------------------------------------------------------------- /overridetranslation/translations/lt_LT/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/overridetranslation/translations/lt_LT/translation.ts -------------------------------------------------------------------------------- /sceditor/classes/lhbbcode/lhbbcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/classes/lhbbcode/lhbbcode.php -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/css/sceditor.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/css/sceditor.default.css -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/css/sceditor.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/css/sceditor.theme.css -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/famfamfam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/famfamfam.png -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/1.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/10.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/100.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/101.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/102.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/103.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/104.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/105.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/109.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/11.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/110.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/111.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/112.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/113.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/114.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/12.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/13.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/14.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/15.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/16.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/17.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/18.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/19.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/2.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/20.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/21.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/22.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/23.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/24.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/25.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/26.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/27.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/28.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/29.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/3.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/30.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/31.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/32.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/33.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/34.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/35.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/36.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/37.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/38.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/39.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/4.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/40.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/41.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/42.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/43.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/44.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/45.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/46.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/47.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/48.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/5.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/6.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/69.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/7.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/8.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/9.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/cheer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/cheer.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/images/smileys/studying.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/images/smileys/studying.gif -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/js/jquery.sceditor.bbcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/js/jquery.sceditor.bbcode.js -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/js/sceditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/js/sceditor.js -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/tpl/lhchat/adminchat.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/tpl/lhchat/adminchat.tpl.php -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/tpl/lhchat/chat.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/tpl/lhchat/chat.tpl.php -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/tpl/lhchat/part/action_block.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/tpl/lhchat/part/action_block.tpl.php -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/tpl/lhchatbox/chatwidget.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/tpl/lhchatbox/chatwidget.tpl.php -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/tpl/pagelayouts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/tpl/pagelayouts/parts/page_head_css_extension.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/tpl/pagelayouts/parts/page_head_css_extension.tpl.php -------------------------------------------------------------------------------- /sceditor/design/sceditortheme/tpl/pagelayouts/parts/page_head_js_extension.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/design/sceditortheme/tpl/pagelayouts/parts/page_head_js_extension.tpl.php -------------------------------------------------------------------------------- /sceditor/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sceditor/doc/readme.txt -------------------------------------------------------------------------------- /sevabot/bootstrap/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sevabot/bootstrap/bootstrap.php -------------------------------------------------------------------------------- /sevabot/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sevabot/doc/readme.txt -------------------------------------------------------------------------------- /sevabot/modules/lhsevabot/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sevabot/modules/lhsevabot/module.php -------------------------------------------------------------------------------- /sevabot/modules/lhsevabot/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sevabot/modules/lhsevabot/test.php -------------------------------------------------------------------------------- /sevabot/settings/settings.ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/sevabot/settings/settings.ini.php -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/README.md -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/css/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/css/override.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Write your style overrides here for LTR languages 3 | **/ -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/css/override_rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Write your style overrides here for RTL languages 3 | **/ -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/css/widget_override.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Write your widget styles here 3 | **/ -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/images/favicon.ico -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/images/general/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/images/general/logo.png -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/images/general/logo_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/images/general/logo_grey.png -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/images/general/logo_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/images/general/logo_user.png -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/images/notification/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/images/notification/notification.png -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/js/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/tpl/lhchat/widget_brand/chatbox.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/tpl/lhchat/widget_brand/chatbox.tpl.php -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/tpl/lhchat/widget_brand/faq.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/tpl/lhchat/widget_brand/faq.tpl.php -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/tpl/lhchat/widget_brand/live_help.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/tpl/lhchat/widget_brand/live_help.tpl.php -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/tpl/lhchat/widget_brand/questionary.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/tpl/lhchat/widget_brand/questionary.tpl.php -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/tpl/pagelayouts/parts/copyright_meta.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/tpl/pagelayouts/parts/copyright_meta.tpl.php -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/tpl/pagelayouts/parts/page_footer.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/tpl/pagelayouts/parts/page_footer.tpl.php -------------------------------------------------------------------------------- /unbrand/design/unbrandtheme/tpl/pagelayouts/parts/page_footer_user.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/design/unbrandtheme/tpl/pagelayouts/parts/page_footer_user.tpl.php -------------------------------------------------------------------------------- /unbrand/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/unbrand/doc/README -------------------------------------------------------------------------------- /verifyuser/bootstrap/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/livehelperchat-extensions/HEAD/verifyuser/bootstrap/bootstrap.php --------------------------------------------------------------------------------