├── README.md └── osticket ├── bootstrap └── bootstrap.php ├── classes └── erlhcoreclassosticketvalidator.php ├── design └── ostickettheme │ ├── js │ └── osticket.js │ └── tpl │ ├── lhchat │ └── chat_tabs │ │ └── chat_actions_extension_multiinclude.tpl.php │ ├── lhinstance │ └── features_multiinclude.tpl.php │ ├── lhosticket │ ├── createanissue.tpl.php │ ├── index.tpl.php │ ├── osticket_enabled_pre.tpl.php │ ├── settings.tpl.php │ └── ticket_url.tpl.php │ └── pagelayouts │ └── parts │ ├── modules_menu │ └── extension_module_multiinclude.tpl.php │ └── page_head_js_extension_multiinclude.tpl.php ├── doc ├── license.txt └── readme.txt ├── modules └── lhosticket │ ├── createanissue.php │ ├── index.php │ ├── module.php │ └── settings.php └── translations └── lt_LT └── translation.ts /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/README.md -------------------------------------------------------------------------------- /osticket/bootstrap/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/bootstrap/bootstrap.php -------------------------------------------------------------------------------- /osticket/classes/erlhcoreclassosticketvalidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/classes/erlhcoreclassosticketvalidator.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/js/osticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/js/osticket.js -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/lhchat/chat_tabs/chat_actions_extension_multiinclude.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/lhchat/chat_tabs/chat_actions_extension_multiinclude.tpl.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/lhinstance/features_multiinclude.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/lhinstance/features_multiinclude.tpl.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/lhosticket/createanissue.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/lhosticket/createanissue.tpl.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/lhosticket/index.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/lhosticket/index.tpl.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/lhosticket/osticket_enabled_pre.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/lhosticket/osticket_enabled_pre.tpl.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/lhosticket/settings.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/lhosticket/settings.tpl.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/lhosticket/ticket_url.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/lhosticket/ticket_url.tpl.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/pagelayouts/parts/modules_menu/extension_module_multiinclude.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/pagelayouts/parts/modules_menu/extension_module_multiinclude.tpl.php -------------------------------------------------------------------------------- /osticket/design/ostickettheme/tpl/pagelayouts/parts/page_head_js_extension_multiinclude.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/design/ostickettheme/tpl/pagelayouts/parts/page_head_js_extension_multiinclude.tpl.php -------------------------------------------------------------------------------- /osticket/doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/doc/license.txt -------------------------------------------------------------------------------- /osticket/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/doc/readme.txt -------------------------------------------------------------------------------- /osticket/modules/lhosticket/createanissue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/modules/lhosticket/createanissue.php -------------------------------------------------------------------------------- /osticket/modules/lhosticket/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/modules/lhosticket/index.php -------------------------------------------------------------------------------- /osticket/modules/lhosticket/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/modules/lhosticket/module.php -------------------------------------------------------------------------------- /osticket/modules/lhosticket/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/modules/lhosticket/settings.php -------------------------------------------------------------------------------- /osticket/translations/lt_LT/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveHelperChat/osTicket/HEAD/osticket/translations/lt_LT/translation.ts --------------------------------------------------------------------------------