├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── nowa-funkcja.md │ └── zg-oszenie-b--du.md ├── .gitignore ├── .htaccess ├── .jshintignore ├── .jshintrc ├── .travis.yml ├── README.md ├── backups └── .htaccess ├── bin ├── .htaccess ├── lms-archive-documents.php ├── lms-arpd ├── lms-arping ├── lms-cashimport-ftp.sh ├── lms-cashimport-mail.php ├── lms-cashimport.php ├── lms-cleanup.php ├── lms-customercalls.php ├── lms-cutoff ├── lms-dsn-handler.php ├── lms-etherdesc ├── lms-fping ├── lms-gps.php ├── lms-gus-regon.php ├── lms-html2pdf.js ├── lms-ipfw ├── lms-makearp ├── lms-makedhcpconf.php ├── lms-makehosts ├── lms-makeipchains ├── lms-makeiptables ├── lms-makemacs ├── lms-makemessages ├── lms-makeoidentconf ├── lms-makeon ├── lms-makeopenbsdpf ├── lms-maketcnew.php ├── lms-makewarnings ├── lms-mgc ├── lms-notify.php ├── lms-payments.php ├── lms-pna.php ├── lms-proforma-transform.php ├── lms-reminder ├── lms-rtparser.php ├── lms-sendinvoices.php ├── lms-sidusis.php ├── lms-sms2rt.php ├── lms-smstools-delivery-report.php ├── lms-smstools-send-report.php ├── lms-stub.php ├── lms-teryt.php ├── lms-traffic ├── lms-traffic-dbcompact.php ├── lms-traffic-htbiptlimits ├── lms-traffic-logiptables ├── lms-vat-payers.php ├── lms-zipcodes.php ├── script-options.php └── voip │ ├── lms-asterisk.php │ ├── lms-billing.php │ └── lms-teryt-emergency-numbers.php ├── cache ├── .htaccess └── htmlpurifier │ └── .gitignore ├── composer.json ├── contrib ├── LMS2Nagios-php │ ├── README │ ├── conf │ │ └── conf.php │ ├── lms2nagios.php │ └── lms_img │ │ ├── DGS-1210-24.png │ │ ├── HP_ML110.png │ │ ├── HP_ML150G6.png │ │ ├── TL-SG1008P.png │ │ ├── V5724G.png │ │ ├── mikrotik_logo.png │ │ ├── nanobridge_m5.png │ │ ├── nanostation_m5 .png │ │ ├── rocket_m5.png │ │ ├── routerboard.png │ │ ├── ubnt_logo.png │ │ ├── wirelessbridge.png │ │ └── wirelessrouter.png ├── LMS2Nagios │ ├── README │ ├── autoaktualizuj.sh │ ├── etc-nagios │ │ ├── hostgroups.cfg.static │ │ ├── hosts.cfg.static │ │ └── services.cfg.static │ ├── nagios-v6-check.py │ └── nagios-v6-gen.py ├── bin │ ├── .htaccess │ ├── cashimportcfg-id123.php │ ├── cashimportcfg-id75.php │ ├── lms-antyvir │ ├── lms-cashimport-bgz-soap.php │ ├── lms-cashimport-bgz.php │ ├── lms-cashimport-bph.php │ ├── lms-cashimport-bzwbk.php │ ├── lms-cashimport-ingbs │ ├── lms-cashimport-pekao.php │ ├── lms-check-mail-curl.sh │ ├── lms-debtors │ ├── lms-export-invoices.sh │ ├── lms-lastmonthinvoicearchive.sh │ └── lms-reminder-slack ├── coffee_cup │ ├── README │ ├── coffee.c │ └── coffee.php ├── customer │ ├── customer.html │ ├── index.php │ ├── lms-powered.png │ └── locale │ │ └── pl │ │ └── strings.php ├── customer_otherip │ ├── README │ ├── README.en │ ├── TODO │ ├── authentication.inc │ ├── balanceview.html │ ├── balanceview.php │ ├── balanceviewaccount.html │ ├── class.php │ ├── customerinfomini.html │ ├── customerlogin.html │ ├── index.php │ ├── invoice.php │ └── locale │ │ └── pl │ │ └── strings.php ├── daemon │ ├── README │ ├── cbq-init │ │ ├── Makefile.in │ │ ├── README │ │ ├── cbq-init.c │ │ └── cbq-init.h │ ├── cutoff2 │ │ ├── Makefile.in │ │ ├── README │ │ ├── cutoff2.c │ │ └── cutoff2.h │ ├── gentoo-init │ │ ├── conf.d │ │ │ └── lmsd │ │ └── init.d │ │ │ └── lmsd │ ├── shaper │ │ ├── Makefile.in │ │ ├── README │ │ ├── shaper.c │ │ └── shaper.h │ ├── systemd │ │ └── lmsd.service │ └── tc-ng │ │ ├── Makefile.in │ │ ├── README │ │ ├── tc-ng.c │ │ └── tc-ng.h ├── export │ └── cdn_optima.txt ├── formularz_przelewu_wplaty │ ├── README │ ├── druk.php │ ├── ico_przelew.png │ └── przelew.png ├── images │ ├── lms_new_80.png │ ├── lms_powered_classic1.png │ ├── lms_powered_classic2.png │ ├── lms_powered_classic3.png │ └── lms_standard.png ├── initLMS.php ├── lms-daemon-radius-mikrotik │ ├── .gitignore │ ├── .project │ ├── .pydevproject │ ├── LICENSE │ ├── README.md │ ├── Readme.pl │ ├── client_ldrm.py │ ├── conf │ │ └── ldrm.conf │ ├── createVirtEnv.bash │ ├── install.txt │ ├── ldrm.py │ ├── log │ │ └── .gitignore │ └── requirements.txt ├── lms-notify2 │ └── lms-notify.php ├── mediawiki │ └── authLMS.php ├── multiip_patch │ ├── ChangeLog │ ├── README │ ├── README.en │ └── multiip-patch.diff ├── platnosci_masowe │ ├── bank_pocztowy │ │ ├── cashimportcfg-bankpocztowy-elixir.php │ │ └── instrukcja.txt │ └── pekao │ │ ├── instrukcja.txt │ │ ├── pekao.sh │ │ └── pekao_cashimportcfg.php ├── sqlpanel │ ├── README │ ├── sql.html │ ├── sql.php │ ├── sqllang.php │ └── sqlprint.html ├── squid_redirector │ ├── README │ ├── img │ │ ├── box_blue.gif │ │ ├── box_blue_lewo.gif │ │ └── box_blue_srodek.gif │ ├── index.php │ ├── lang.php │ ├── lms-squid │ └── message.html ├── tele.centrum.v2 │ ├── bin │ │ └── callcenter.php │ ├── css │ │ └── style.css │ ├── index.php │ ├── js │ │ └── custom.js │ ├── lib │ │ └── definitions.php │ ├── readme.txt │ └── templates │ │ └── index.html └── userpanel_modules │ └── accounts │ ├── configuration.php │ ├── functions.php │ ├── locale │ └── pl │ │ └── strings.php │ ├── opis.txt │ └── templates │ ├── accounts.html │ ├── add.html │ ├── edit.html │ ├── mailboxnew.html │ ├── mailboxpasswd.html │ ├── mailsbox.html │ ├── mailsboxinfo.html │ ├── setup.html │ └── tree.html ├── css ├── fontawesome │ ├── less │ └── webfonts ├── less │ ├── advanced-select-test.less │ ├── advanced-select.less │ ├── button.less │ ├── combobox.less │ ├── customer-select.less │ ├── datatables.less │ ├── fontawesome.less │ ├── gallery.less │ ├── generic.less │ ├── hint.less │ ├── icons.less │ ├── jquery-ui.less │ ├── list.less │ ├── lms-variables.less │ ├── menu.less │ ├── modal-dialog.less │ ├── multiselect.less │ ├── popup-menu.less │ ├── spinner.less │ └── userpanel-variables.less ├── map.css ├── map.less ├── style.css ├── style.less ├── style_print.css ├── style_print.less ├── templates │ ├── attachments.css │ ├── attachments.less │ ├── customer │ │ ├── customerassignments.css │ │ ├── customerassignments.less │ │ ├── customerbalancebox.css │ │ ├── customerbalancebox.less │ │ ├── customercallbox.css │ │ ├── customercallbox.less │ │ ├── customerdevices.css │ │ ├── customerdevices.less │ │ ├── customerdocuments.css │ │ ├── customerdocuments.less │ │ ├── customerevents.css │ │ ├── customerevents.less │ │ ├── customerextids.css │ │ ├── customerextids.less │ │ ├── customergroups.css │ │ ├── customergroups.less │ │ ├── customernetnodes.css │ │ ├── customernetnodes.less │ │ ├── customernetworksbox.css │ │ ├── customernetworksbox.less │ │ ├── customernodesbox.css │ │ ├── customernodesbox.less │ │ ├── customertickets.css │ │ ├── customertickets.less │ │ ├── customervoipaccountsbox.css │ │ └── customervoipaccountsbox.less │ ├── managementurl │ │ ├── managementurls.css │ │ └── managementurls.less │ ├── netdev │ │ ├── netdevconnbox.css │ │ ├── netdevconnbox.less │ │ ├── netdevipbox.css │ │ ├── netdevipbox.less │ │ ├── netdevmacs.css │ │ ├── netdevmacs.less │ │ ├── netdevnodes.css │ │ ├── netdevnodes.less │ │ ├── radiosectors.css │ │ └── radiosectors.less │ ├── node │ │ ├── nodegroups.css │ │ ├── nodegroups.less │ │ ├── nodelocks.css │ │ ├── nodelocks.less │ │ ├── nodesessions.css │ │ ├── nodesessions.less │ │ ├── routednetworks.css │ │ └── routednetworks.less │ ├── tariff │ │ ├── tariffpricevariants.css │ │ └── tariffpricevariants.less │ └── twofactorauth │ │ ├── twofactorauthtrusteddevices.css │ │ └── twofactorauthtrusteddevices.less ├── tinymce4 │ ├── Variables.css │ ├── Variables.less │ ├── content.inline.min.css │ ├── content.min.css │ ├── fonts │ │ ├── readme.md │ │ ├── tinymce-small.eot │ │ ├── tinymce-small.json │ │ ├── tinymce-small.svg │ │ ├── tinymce-small.ttf │ │ ├── tinymce-small.woff │ │ ├── tinymce.eot │ │ ├── tinymce.json │ │ ├── tinymce.svg │ │ ├── tinymce.ttf │ │ └── tinymce.woff │ ├── img │ │ ├── anchor.gif │ │ ├── loader.gif │ │ ├── object.gif │ │ └── trans.gif │ ├── lms │ │ ├── content.css │ │ └── content.less │ ├── skin.ie7.min.css │ ├── skin.json │ └── skin.min.css └── tinymce5 │ ├── content.min.css │ ├── skin.min.css │ └── skin.mobile.min.css ├── daemon ├── .gitignore ├── Makefile.am ├── Makefile.in ├── acinclude.m4 ├── aclocal.m4 ├── config.guess ├── config.h.in ├── config.sub ├── config │ ├── config.c │ ├── config.h │ ├── dictionary.c │ └── dictionary.h ├── configure ├── configure.ac ├── cron │ ├── cron.c │ ├── cron.h │ ├── cronparse.c │ └── cronparse.h ├── db.h ├── dbdrivers │ ├── Makefile.am │ ├── Makefile.in │ ├── mysql │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── mysql.c │ │ └── mysql.h │ └── pgsql │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── pgsql.c │ │ └── pgsql.h ├── defs.h ├── depcomp ├── install-sh ├── lmsd.c ├── lmsd.h ├── ltmain.sh ├── m4 │ └── .gitignore ├── missing ├── modules │ ├── Makefile.am │ ├── Makefile.in │ ├── cutoff │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cutoff.c │ │ └── cutoff.h │ ├── dhcp │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dhcp.c │ │ └── dhcp.h │ ├── dns │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dns.c │ │ ├── dns.h │ │ └── sample │ │ │ ├── forward │ │ │ └── generic │ │ │ ├── named.conf │ │ │ └── reverse │ │ │ └── generic │ ├── ethers │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ethers.c │ │ └── ethers.h │ ├── ewx-pt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ewx-pt.c │ │ └── ewx-pt.h │ ├── ewx-stm-channels │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ewx-stm-channels.c │ │ └── ewx-stm-channels.h │ ├── ewx-stm │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ewx-stm.c │ │ └── ewx-stm.h │ ├── ggnotify │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ReadMe │ │ ├── ggnotify.c │ │ ├── ggnotify.h │ │ └── sample │ │ │ ├── lms-ggnotify.ini │ │ │ └── mailtemplate │ ├── hostfile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hostfile.c │ │ └── hostfile.h │ ├── notify │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── notify.c │ │ ├── notify.h │ │ └── sample │ │ │ └── mailtemplate │ ├── oident │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── oident.c │ │ └── oident.h │ ├── parser │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── extensions │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── net.c │ │ │ ├── net.h │ │ │ ├── sql.c │ │ │ ├── sql.h │ │ │ ├── syslog.c │ │ │ ├── syslog.h │ │ │ ├── tscript_exec.c │ │ │ ├── tscript_exec.h │ │ │ ├── tscript_file.c │ │ │ ├── tscript_file.h │ │ │ ├── tscript_string.c │ │ │ ├── tscript_string.h │ │ │ ├── tscript_sysinfo.c │ │ │ └── tscript_sysinfo.h │ │ ├── lib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── list.h │ │ │ ├── map.h │ │ │ ├── tscript_ast.c │ │ │ ├── tscript_ast.h │ │ │ ├── tscript_compiler.c │ │ │ ├── tscript_compiler.h │ │ │ ├── tscript_context.c │ │ │ ├── tscript_context.h │ │ │ ├── tscript_debug.c │ │ │ ├── tscript_debug.h │ │ │ ├── tscript_extensions.c │ │ │ ├── tscript_extensions.h │ │ │ ├── tscript_extensions_private.h │ │ │ ├── tscript_interpreter.c │ │ │ ├── tscript_interpreter.h │ │ │ ├── tscript_lexical.l │ │ │ ├── tscript_parser.y │ │ │ ├── tscript_values.c │ │ │ ├── tscript_values.h │ │ │ ├── tscript_variables.c │ │ │ ├── tscript_variables.h │ │ │ └── tscript_variables_private.h │ │ ├── parser.c │ │ └── parser.h │ ├── payments │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── payments.c │ │ └── payments.h │ ├── pinger │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── pinger.c │ │ └── pinger.h │ ├── system │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── system.c │ │ └── system.h │ ├── tc-new │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── tc-new.c │ │ └── tc-new.h │ ├── tc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── tc.c │ │ └── tc.h │ └── traffic │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── traffic.c │ │ └── traffic.h ├── util.c ├── util.h └── ylwrap ├── debian ├── README.Debian ├── changelog ├── compat ├── conf │ └── apache.conf ├── control ├── copyright ├── docs ├── lms-common.config ├── lms-common.dirs ├── lms-common.install ├── lms-common.postinst ├── lms-common.postrm ├── lms-common.prerm ├── lms-daemon-mysql.install ├── lms-daemon-pgsql.install ├── lms-daemon.init.d ├── lms-daemon.install ├── lms-doc.docs ├── lms-doc.install ├── lms-tools.install ├── lms-ui-mysql.install ├── lms-ui-pgsql.install ├── lms-ui-pgsql.postinst ├── lms-ui-pgsql.templates ├── lms-ui.cron.d ├── lms-ui.dirs ├── lms-ui.install ├── lms-ui.links ├── lms-ui.postinst ├── lms-ui.postrm ├── lms-ui.prerm ├── rules └── source │ └── format ├── devel ├── dbinfo_version_bump.sh ├── docgen-pl.sh ├── docgen.sh ├── ethercodes.sh ├── full-db-schema-check.mysql ├── full-db-schema-check.pgsql ├── full-db-schema-check.sh ├── index-with-execstack.php ├── jquery.sh ├── lesscpy.sh ├── lms-modules-test.sh ├── navgoco.sh ├── show_sql_recursive_tables.sh ├── show_sql_tables.sh ├── smartylint.php ├── strings-js.sh ├── strings.pl ├── strings.sh ├── strings_validate.awk ├── stringsback.pl ├── twitter_bootstrap.sh ├── upgradedb-template.php └── upgradedb.php ├── doc ├── 00-Index.txt ├── AUTHORS ├── COPYING ├── COPYRIGHTS ├── ChangeLog ├── INSTALL ├── README ├── README.pl ├── README_lms-sidusis.md ├── html │ ├── en │ │ ├── authors.html │ │ ├── contrib-customer2.html │ │ ├── contrib-sqlpanel.html │ │ ├── contrib-squid.html │ │ ├── contrib.html │ │ ├── daemon-modules.html │ │ ├── daemon.html │ │ ├── devel-db.html │ │ ├── devel-genfake.html │ │ ├── devel-ini.html │ │ ├── devel-limits.html │ │ ├── devel-rights.html │ │ ├── devel.html │ │ ├── faq.html │ │ ├── index.html │ │ ├── install-config.html │ │ ├── install-db.html │ │ ├── install-documents.html │ │ ├── install-install.html │ │ ├── install-locale.html │ │ ├── install-requirements.html │ │ ├── install-rights.html │ │ ├── install-upgrade.html │ │ ├── install.html │ │ ├── intro.html │ │ ├── legalnotice.html │ │ ├── menu-administration.html │ │ ├── menu-configuration.html │ │ ├── menu-customers.html │ │ ├── menu-documents.html │ │ ├── menu-finances.html │ │ ├── menu-helpdesk.html │ │ ├── menu-hosting.html │ │ ├── menu-messages.html │ │ ├── menu-netdevices.html │ │ ├── menu-networks.html │ │ ├── menu-nodes.html │ │ ├── menu-reload.html │ │ ├── menu-stats.html │ │ ├── menu-timetable.html │ │ ├── mgc-config.html │ │ ├── mgc-example.html │ │ ├── mgc.html │ │ ├── moreinfo.html │ │ ├── scripts-config.html │ │ ├── scripts-list.html │ │ ├── scripts.html │ │ ├── tscript.html │ │ ├── user.html │ │ ├── userpanel-config.html │ │ ├── userpanel-install.html │ │ ├── userpanel-modules.html │ │ ├── userpanel-style.html │ │ └── userpanel.html │ ├── images │ │ ├── logo-small.png │ │ ├── note.gif │ │ ├── style.css │ │ └── warning.gif │ └── pl │ │ ├── authors.html │ │ ├── contrib-antyvir.html │ │ ├── contrib-customer2.html │ │ ├── contrib-sqlpanel.html │ │ ├── contrib-squid.html │ │ ├── contrib.html │ │ ├── daemon-modules.html │ │ ├── daemon.html │ │ ├── devel-db.html │ │ ├── devel-genfake.html │ │ ├── devel-ini.html │ │ ├── devel-limits.html │ │ ├── devel-rights.html │ │ ├── devel.html │ │ ├── faq.html │ │ ├── index.html │ │ ├── install-config.html │ │ ├── install-db.html │ │ ├── install-documents.html │ │ ├── install-install.html │ │ ├── install-locale.html │ │ ├── install-requirements.html │ │ ├── install-rights.html │ │ ├── install-teryt.html │ │ ├── install-upgrade.html │ │ ├── install.html │ │ ├── intro.html │ │ ├── legalnotice.html │ │ ├── menu-administration.html │ │ ├── menu-configuration.html │ │ ├── menu-customers.html │ │ ├── menu-documents.html │ │ ├── menu-finances.html │ │ ├── menu-helpdesk.html │ │ ├── menu-hosting.html │ │ ├── menu-messages.html │ │ ├── menu-netdevices.html │ │ ├── menu-networks.html │ │ ├── menu-nodes.html │ │ ├── menu-reload.html │ │ ├── menu-stats.html │ │ ├── menu-timetable.html │ │ ├── mgc-config.html │ │ ├── mgc-example.html │ │ ├── mgc.html │ │ ├── moreinfo.html │ │ ├── scripts-config.html │ │ ├── scripts-list.html │ │ ├── scripts.html │ │ ├── tscript.html │ │ ├── user.html │ │ ├── userpanel-config.html │ │ ├── userpanel-install.html │ │ ├── userpanel-modules.html │ │ ├── userpanel-style.html │ │ └── userpanel.html ├── lms.mysql ├── lms.pgsql └── sgml │ ├── advanced.sgml │ ├── contrib.sgml │ ├── daemon.sgml │ ├── faq.sgml │ ├── index.sgml │ ├── install.sgml │ ├── intro.sgml │ ├── lms.dsl │ ├── mgc.sgml │ ├── pl │ ├── advanced.sgml │ ├── contrib.sgml │ ├── daemon.sgml │ ├── faq.sgml │ ├── index.sgml │ ├── install.sgml │ ├── intro.sgml │ ├── lms.dsl │ ├── mgc.sgml │ ├── scripts.sgml │ ├── tscript.sgml │ ├── userif.sgml │ └── userpanel.sgml │ ├── scripts.sgml │ ├── tscript.sgml │ ├── userif.sgml │ ├── userpanel.sgml │ └── version.sgml ├── documents ├── .htaccess └── templates │ └── default │ ├── engine.php │ ├── info.php │ ├── plugin.html │ ├── plugin.php │ ├── post-action.php │ └── template.html ├── img ├── 1.png ├── 24-ring-black.png ├── 24-ring-blue.png ├── 24-ring-orange.png ├── 24-ring-red.png ├── Arial.fdb ├── Exit.png ├── access.gif ├── accessdenied.gif ├── account.gif ├── add.gif ├── alec.icon.gif ├── alias.gif ├── asc_order.gif ├── attach.gif ├── baseciq.icon.gif ├── bluepx.gif ├── calendar.gif ├── calendar.png ├── calendar_add.png ├── cancel.gif ├── card.gif ├── ceho.icon.gif ├── channel.gif ├── chilek.icon.gif ├── class.gif ├── clone.gif ├── cmp.gif ├── cms.gif ├── common.js ├── computer_add.png ├── computer_warning.png ├── computers.png ├── confirm.gif ├── core │ └── error.png ├── creditor.gif ├── customer.gif ├── customers.gif ├── db.gif ├── dbnew.gif ├── dead.gif ├── deadline.png ├── delete.gif ├── desc.gif ├── desc_order.gif ├── dhcp.gif ├── dhcpend.gif ├── dhcpstart.gif ├── division.gif ├── dns.gif ├── doc.gif ├── docum.gif ├── domain.gif ├── down.gif ├── downrate.gif ├── dropdown.gif ├── druk.gif ├── edit.gif ├── email.gif ├── empty.gif ├── eraser.gif ├── error.gif ├── event-add.png ├── event-close.png ├── exclamation.gif ├── folder.gif ├── forward.gif ├── gateway.gif ├── gg.gif ├── greenpx.gif ├── group.gif ├── guarantee.png ├── help.png ├── helpdesk.png ├── home.gif ├── home.png ├── host.gif ├── hunter.icon.gif ├── ico_przelew.png ├── id.gif ├── info.gif ├── info1.gif ├── info2.gif ├── info3.gif ├── interduo.icon.gif ├── ip.gif ├── ip_pub.gif ├── isource.gif ├── keys.gif ├── kp.png ├── kw.png ├── l.gif ├── left.gif ├── lexx.icon.gif ├── lion.icon.gif ├── lms-net.gif ├── lms-powered.png ├── location.png ├── logo-40.png ├── logo-ico.png ├── logo-small.png ├── logo.png ├── logout.gif ├── mac.gif ├── mail.gif ├── mail_add.png ├── mailsms.gif ├── mixaccess.gif ├── money.gif ├── name.gif ├── netdev.gif ├── netdev.png ├── netdev_model.gif ├── netdev_off.gif ├── netdev_off.jpg ├── netdev_off.png ├── netdev_on.gif ├── netdev_on.jpg ├── netdev_on.png ├── netdev_takenports.gif ├── netdev_unk.gif ├── netdev_unk.jpg ├── netdev_unk.png ├── netnode.png ├── network.gif ├── new.gif ├── next.gif ├── next_year.gif ├── noaccess.gif ├── node.gif ├── node.png ├── node_off.gif ├── node_off.jpg ├── node_off.png ├── node_on.gif ├── node_on.jpg ├── node_on.png ├── node_unk.gif ├── node_unk.jpg ├── node_unk.png ├── nodegroup.gif ├── note.gif ├── open.gif ├── opensource-110x95.gif ├── options.gif ├── pass.gif ├── passwd.gif ├── pay.gif ├── payment.gif ├── pdf.gif ├── phone.gif ├── pie.htc ├── pin.gif ├── pin_blue.png ├── plain.gif ├── port.gif ├── post.gif ├── poweredbylms.gif ├── prev.gif ├── prev_year.gif ├── print.gif ├── printd.gif ├── printm.gif ├── printn.gif ├── printr.gif ├── producer.gif ├── promo.gif ├── promoschema.gif ├── przelew.png ├── queue.gif ├── radius.gif ├── ravvar.icon.gif ├── recover.gif ├── redpx.gif ├── refresh.png ├── reload.gif ├── remap.gif ├── report.gif ├── resolved.gif ├── right.gif ├── ring-orange.png ├── ring-red.png ├── save.gif ├── schedule.png ├── search-results.png ├── search.gif ├── serialnumber.gif ├── service-type.png ├── settings.gif ├── size.gif ├── skype.gif ├── smarty_icon.gif ├── sms.gif ├── state.gif ├── style.css ├── style_print.css ├── tax.gif ├── ticket-read.png ├── ticket-type.png ├── ticket-unread.png ├── ticket.gif ├── time.gif ├── tip.gif ├── totd.gif ├── traffic.gif ├── transferform.png ├── unk.gif ├── up.gif ├── uprate.gif ├── user_add.png ├── user_warning.png ├── users.gif ├── users.png ├── value.gif ├── values.gif ├── view.gif ├── voip.gif ├── volcano.png ├── wait.gif ├── warning.png ├── warningmix.gif ├── warningoff.gif ├── warningon.gif ├── wins.gif ├── wireless.gif ├── xls.gif ├── yim.gif └── zipped.gif ├── index.php ├── js ├── Autolinker.min.js ├── Autolinker.min.js.map ├── ClickShowHideMenu.js ├── DragPopup.js ├── OpenLayers │ ├── OpenLayers.js │ ├── img │ │ ├── blank.gif │ │ ├── cloud-popup-relative.png │ │ ├── drag-rectangle-off.png │ │ ├── drag-rectangle-on.png │ │ ├── east-mini.png │ │ ├── layer-switcher-maximize.png │ │ ├── layer-switcher-minimize.png │ │ ├── marker-blue.png │ │ ├── marker-gold.png │ │ ├── marker-green.png │ │ ├── marker.png │ │ ├── measuring-stick-off.png │ │ ├── measuring-stick-on.png │ │ ├── north-mini.png │ │ ├── panning-hand-off.png │ │ ├── panning-hand-on.png │ │ ├── slider.png │ │ ├── south-mini.png │ │ ├── west-mini.png │ │ ├── zoom-minus-mini.png │ │ ├── zoom-plus-mini.png │ │ ├── zoom-world-mini.png │ │ └── zoombar.png │ ├── lang │ │ └── pl.js │ ├── license.txt │ ├── readme.txt │ └── theme │ │ └── default │ │ ├── google.css │ │ ├── google.tidy.css │ │ ├── ie6-style.css │ │ ├── ie6-style.tidy.css │ │ ├── img │ │ ├── add_point_off.png │ │ ├── add_point_on.png │ │ ├── blank.gif │ │ ├── close.gif │ │ ├── drag-rectangle-off.png │ │ ├── drag-rectangle-on.png │ │ ├── draw_line_off.png │ │ ├── draw_line_on.png │ │ ├── draw_point_off.png │ │ ├── draw_point_on.png │ │ ├── draw_polygon_off.png │ │ ├── draw_polygon_on.png │ │ ├── editing_tool_bar.png │ │ ├── move_feature_off.png │ │ ├── move_feature_on.png │ │ ├── navigation_history.png │ │ ├── overview_replacement.gif │ │ ├── pan-panel-NOALPHA.png │ │ ├── pan-panel.png │ │ ├── pan_off.png │ │ ├── pan_on.png │ │ ├── panning-hand-off.png │ │ ├── panning-hand-on.png │ │ ├── remove_point_off.png │ │ ├── remove_point_on.png │ │ ├── ruler.png │ │ ├── save_features_off.png │ │ ├── save_features_on.png │ │ ├── view_next_off.png │ │ ├── view_next_on.png │ │ ├── view_previous_off.png │ │ ├── view_previous_on.png │ │ ├── zoom-panel-NOALPHA.png │ │ └── zoom-panel.png │ │ ├── style.css │ │ └── style.tidy.css ├── autoiframe.js ├── autosuggest.js ├── base64.js ├── clipboard.min.js ├── common.js ├── customerassignmenthelper.js ├── galleria ├── input-autogrow.min.js ├── jquery ├── jquery-chosen ├── jquery-datatables ├── jquery-datatables-i18n │ ├── cs.json │ ├── en.json │ ├── lt.json │ ├── pl.json │ ├── ro.json │ └── sk.json ├── jquery-datatables-responsive ├── jquery-datetimepicker ├── jquery-simple-combobox ├── jquery.js ├── jqueryui ├── language.js ├── lms-ui-combobox.js ├── lms-ui-customer-company-selection-dialog.js ├── lms-ui-customer-select.js ├── lms-ui-datepicker.js ├── lms-ui-day-selection.js ├── lms-ui-deadline-selection.js ├── lms-ui-deferred-submit.js ├── lms-ui-dialog.js ├── lms-ui-dragslider.js ├── lms-ui-event-time-slider.js ├── lms-ui-fileupload.js ├── lms-ui-fileview.js ├── lms-ui-geocoding.js ├── lms-ui-karma.js ├── lms-ui-mac-address-selection.js ├── lms-ui-multiselect.js ├── lms-ui-numberplan-select.js ├── lms-ui-persistent-filter.js ├── lms-ui-reset-to-defaults.js ├── lms-ui-resource-tab-selector.js ├── locale │ ├── cs_CZ.js │ ├── en_US.js │ ├── lt_LT.js │ ├── pl_PL.js │ ├── ro_RO.js │ └── sk_SK.js ├── location_box.js ├── location_box_expandable.js ├── map.js ├── modal-dialogs.js ├── mousetrap ├── overlib.js ├── popup-menu.js ├── select2 ├── sprintf.min.js ├── sprintf.min.js.map ├── templates │ ├── attachments.js │ ├── customer │ │ ├── customerdocuments.js │ │ ├── customerevents.js │ │ ├── customerextids.js │ │ ├── customergroups.js │ │ ├── customermessages.js │ │ ├── customernetworksbox.js │ │ ├── customernodesbox.js │ │ ├── customertickets.js │ │ └── customervoipaccountsbox.js │ ├── event │ │ └── eventlist.js │ ├── managementurl │ │ └── managementurls.js │ ├── netdev │ │ ├── netdevmacs.js │ │ └── radiosectors.js │ ├── node │ │ ├── nodegroups.js │ │ ├── nodelocks.js │ │ └── routednetworks.js │ ├── rt │ │ └── rtticketmodify.js │ ├── tariff │ │ └── tariffpricevariants.js │ └── twofactorauth │ │ └── twofactorauthtrusteddevices.js ├── tinymce ├── tinymce4 │ └── langs │ │ ├── cs.js │ │ ├── en_GB.js │ │ ├── lt.js │ │ ├── pl.js │ │ ├── ro.js │ │ └── sk.js ├── tinymce5 │ └── langs │ │ ├── cs.js │ │ ├── lt.js │ │ ├── pl.js │ │ ├── ro.js │ │ └── sk.js └── xajax_js │ ├── JSON.js │ ├── JSON_uncompressed.js │ ├── xajax_core.js │ ├── xajax_core_uncompressed.js │ ├── xajax_debug.js │ ├── xajax_debug_uncompressed.js │ ├── xajax_lang_bg.js │ ├── xajax_lang_bg_uncompressed.js │ ├── xajax_lang_de.js │ ├── xajax_lang_de_uncompressed.js │ ├── xajax_lang_es.js │ ├── xajax_lang_es_uncompressed.js │ ├── xajax_lang_fr.js │ ├── xajax_lang_fr_uncompressed.js │ ├── xajax_lang_nl.js │ ├── xajax_lang_nl_uncompressed.js │ ├── xajax_lang_tr.js │ ├── xajax_lang_tr_uncompressed.js │ ├── xajax_verbose.js │ └── xajax_verbose_uncompressed.js ├── lib ├── .htaccess ├── Auth.class.php ├── EtherCodes.class.php ├── ExecStack.class.php ├── Google2FA │ ├── Google2FA.php │ └── Lms2FAQRcode.php ├── LMS.class.php ├── LMSCache.php ├── LMSConfig │ ├── ConfigContainer.php │ ├── ConfigHelper.php │ ├── ConfigLoader.php │ ├── ConfigParserInterface.php │ ├── ConfigProviderInterface.php │ ├── ConfigSection.php │ ├── ConfigVariable.php │ ├── IniConfigParser.php │ ├── IniConfigProvider.php │ ├── LMSConfig.php │ ├── UiConfigParser.php │ ├── UiConfigProvider.php │ ├── UserRightsConfigParser.php │ └── UserRightsConfigProvider.php ├── LMSDB.php ├── LMSDBDriverInterface.php ├── LMSDBInterface.php ├── LMSDB_common.class.php ├── LMSDB_driver_mysqli.class.php ├── LMSDB_driver_postgres.class.php ├── LMSDocuments │ ├── LMSDocument.php │ ├── LMSEzpdfBackend.php │ ├── LMSEzpdfInvoice.php │ ├── LMSEzpdfMipTransferForm.php │ ├── LMSEzpdfReceipt.php │ ├── LMSEzpdfTransferForm.php │ ├── LMSFpdiBackend.php │ ├── LMSHtmlDebitNote.php │ ├── LMSHtmlDocument.php │ ├── LMSHtmlInvoice.php │ ├── LMSHtmlReceipt.php │ ├── LMSInvoice.php │ ├── LMSPdfUniteBackend.php │ ├── LMSTcpdfBackend.php │ ├── LMSTcpdfDebitNote.php │ ├── LMSTcpdfInvoice.php │ ├── LMSTcpdfTransferForm.php │ └── OfficeDocument.php ├── LMSManagers │ ├── LMSCashManager.php │ ├── LMSCashManagerInterface.php │ ├── LMSConfigManager.php │ ├── LMSConfigManagerInterface.php │ ├── LMSCustomerGroupManager.php │ ├── LMSCustomerGroupManagerInterface.php │ ├── LMSCustomerManager.php │ ├── LMSCustomerManagerInterface.php │ ├── LMSDivisionManager.php │ ├── LMSDivisionManagerInterface.php │ ├── LMSDocumentManager.php │ ├── LMSDocumentManagerInterface.php │ ├── LMSEventManager.php │ ├── LMSEventManagerInterface.php │ ├── LMSFileManager.php │ ├── LMSFileManagerInterface.php │ ├── LMSFinanceManager.php │ ├── LMSFinanceManagerInterface.php │ ├── LMSHelpdeskManager.php │ ├── LMSHelpdeskManagerInterface.php │ ├── LMSLocationManager.php │ ├── LMSLocationManagerInterface.php │ ├── LMSManager.php │ ├── LMSMessageManager.php │ ├── LMSMessageManagerInterface.php │ ├── LMSNetDevManager.php │ ├── LMSNetDevManagerInterface.php │ ├── LMSNetNodeManager.php │ ├── LMSNetNodeManagerInterface.php │ ├── LMSNetworkManager.php │ ├── LMSNetworkManagerInterface.php │ ├── LMSNodeGroupManager.php │ ├── LMSNodeGroupManagerInterface.php │ ├── LMSNodeManager.php │ ├── LMSNodeManagerInterface.php │ ├── LMSProjectManager.php │ ├── LMSProjectManagerInterface.php │ ├── LMSTariffPriceVariantManager.php │ ├── LMSTariffPriceVariantManagerInterface.php │ ├── LMSTariffTagManager.php │ ├── LMSTariffTagManagerInterface.php │ ├── LMSUserGroupManager.php │ ├── LMSUserGroupManagerInterface.php │ ├── LMSUserManager.php │ ├── LMSUserManagerInterface.php │ ├── LMSVoipAccountManager.php │ └── LMSVoipAccountManagerInterface.php ├── LMSPagination.php ├── LMSPaginationFactory.php ├── LMSPaginationLong.php ├── LMSPaginationShort.php ├── LMSPagination_ext.php ├── LMSPermissions │ ├── AccessRights.class.php │ └── Permission.class.php ├── LMSPluginManager │ ├── LMSPlugin.php │ └── LMSPluginManager.php ├── LMSSmarty.php ├── SYSLOG.class.php ├── Schemat_JPK_VAT(3)_v1-1.xsl ├── Session.class.php ├── SmartyPlugins │ ├── LMSSmartyPlugins.php │ ├── Smarty_Resource_Userpanel_Module.php │ ├── Smarty_Resource_Userpanel_Setup_Module.php │ ├── block.box_buttons.php │ ├── block.box_container.php │ ├── block.box_contents.php │ ├── block.box_header.php │ ├── block.box_panel.php │ ├── block.box_row.php │ ├── block.buttons.php │ ├── block.donthyphenate.php │ ├── block.t.php │ ├── block.tab_button_panel.php │ ├── block.tab_buttons.php │ ├── block.tab_container.php │ ├── block.tab_contents.php │ ├── block.tab_header.php │ ├── block.tab_header_cell.php │ ├── block.tab_hourglass.php │ ├── block.tab_table.php │ ├── function.bankaccount.php │ ├── function.barcode.php │ ├── function.button.php │ ├── function.contact.php │ ├── function.css.php │ ├── function.currency_selection.php │ ├── function.customerlist.php │ ├── function.date_period_preset.php │ ├── function.day_selection.php │ ├── function.deadline_selection.php │ ├── function.division_selection.php │ ├── function.document_address.php │ ├── function.documentview.php │ ├── function.event_time_selection.php │ ├── function.fileupload.php │ ├── function.gentime.php │ ├── function.handle.php │ ├── function.hint.php │ ├── function.icon.php │ ├── function.identitytypes.php │ ├── function.image.php │ ├── function.image_data.php │ ├── function.js.php │ ├── function.karma.php │ ├── function.list.php │ ├── function.location_box.php │ ├── function.location_box_expandable.php │ ├── function.mac_address_selection.php │ ├── function.memory.php │ ├── function.multi_location_box.php │ ├── function.network_container.php │ ├── function.network_device_selection.php │ ├── function.network_node_selection.php │ ├── function.networkdevicetypes.php │ ├── function.number.php │ ├── function.numberplan_selection.php │ ├── function.paytypes.php │ ├── function.persistent_filter.php │ ├── function.reset_to_defaults.php │ ├── function.resource_tab_selector.php │ ├── function.show_on_map_button.php │ ├── function.speech_recognition.php │ ├── function.sum.php │ ├── function.tax_category_selection.php │ ├── function.tax_rate_selection.php │ ├── function.tip.php │ ├── function.user_selection.php │ ├── modifier.donthyphenate.php │ ├── modifier.duration_format.php │ ├── modifier.message_quote.php │ ├── modifier.money_format.php │ ├── modifier.size_format.php │ ├── modifier.striphtml.php │ ├── modifier.to_words.php │ ├── modifier.trunescape.php │ └── resource.extendsall.php ├── Sysinfo.class.php ├── Utils.php ├── accesstable.php ├── backend │ ├── class.LocationCache.php │ └── kdtree │ │ ├── class.Kd_node.php │ │ └── class.Kd_tree.php ├── checkdirs.php ├── checkip.php ├── common.php ├── config.php ├── customerconsents.php ├── customercontacttypes.php ├── definitions.php ├── dns.php ├── ethercodes.txt ├── ezpdf │ └── fonts │ │ ├── arial.afm │ │ ├── arial.ttf │ │ ├── arialbd.afm │ │ └── arialbd.ttf ├── html2pdf │ ├── LMSHTML2PDF.php │ └── LMSHTML2PDF_parsingCss.php ├── language.php ├── locale │ ├── Localisation.php │ ├── cs_CZ │ │ ├── fortunes.php │ │ ├── strings.php │ │ ├── system.php │ │ └── ui.php │ ├── en_GB │ │ ├── fortunes.php │ │ ├── system.php │ │ └── ui.php │ ├── en_GY │ │ ├── fortunes.php │ │ ├── system.php │ │ └── ui.php │ ├── en_US │ │ ├── fortunes.php │ │ ├── system.php │ │ └── ui.php │ ├── lt_LT │ │ ├── fortunes.php │ │ ├── strings.php │ │ ├── system.php │ │ └── ui.php │ ├── pl_PL │ │ ├── fortunes.php │ │ ├── strings.php │ │ ├── system.php │ │ └── ui.php │ ├── ro_RO │ │ ├── fortunes.php │ │ ├── strings.php │ │ ├── system.php │ │ └── ui.php │ └── sk_SK │ │ ├── fortunes.php │ │ ├── strings.php │ │ ├── system.php │ │ └── ui.php ├── menu.php ├── plugins │ ├── example.php │ └── smspasswords.php ├── tax_office_codes.php ├── tcpdf.php ├── tcpdf │ ├── config │ │ └── lang │ │ │ ├── eng.php │ │ │ └── pol.php │ └── fonts │ │ ├── liberationsans.ctg.z │ │ ├── liberationsans.php │ │ ├── liberationsans.z │ │ ├── liberationsansb.ctg.z │ │ ├── liberationsansb.php │ │ ├── liberationsansb.z │ │ ├── liberationsansbi.ctg.z │ │ ├── liberationsansbi.php │ │ ├── liberationsansbi.z │ │ ├── liberationsansi.ctg.z │ │ ├── liberationsansi.php │ │ └── liberationsansi.z ├── upgradedb │ ├── mysql.2004030800.php │ ├── mysql.2004031000.php │ ├── mysql.2004031100.php │ ├── mysql.2004031400.php │ ├── mysql.2004031401.php │ ├── mysql.2004031402.php │ ├── mysql.2004040701.php │ ├── mysql.2004040800.php │ ├── mysql.2004041600.php │ ├── mysql.2004042000.php │ ├── mysql.2004042300.php │ ├── mysql.2004061900.php │ ├── mysql.2004070100.php │ ├── mysql.2004070800.php │ ├── mysql.2004071200.php │ ├── mysql.2004071400.php │ ├── mysql.2004072100.php │ ├── mysql.2004072700.php │ ├── mysql.2004081400.php │ ├── mysql.2004081700.php │ ├── mysql.2004081800.php │ ├── mysql.2004090700.php │ ├── mysql.2004090800.php │ ├── mysql.2004101800.php │ ├── mysql.2004102900.php │ ├── mysql.2004111300.php │ ├── mysql.2004111700.php │ ├── mysql.2004112100.php │ ├── mysql.2004112400.php │ ├── mysql.2004112600.php │ ├── mysql.2004112700.php │ ├── mysql.2004120300.php │ ├── mysql.2004120400.php │ ├── mysql.2004120600.php │ ├── mysql.2004121000.php │ ├── mysql.2005012600.php │ ├── mysql.2005012700.php │ ├── mysql.2005013000.php │ ├── mysql.2005020600.php │ ├── mysql.2005021500.php │ ├── mysql.2005022300.php │ ├── mysql.2005022500.php │ ├── mysql.2005030100.php │ ├── mysql.2005030200.php │ ├── mysql.2005030800.php │ ├── mysql.2005031000.php │ ├── mysql.2005033000.php │ ├── mysql.2005033100.php │ ├── mysql.2005033101.php │ ├── mysql.2005033102.php │ ├── mysql.2005033103.php │ ├── mysql.2005042100.php │ ├── mysql.2005042400.php │ ├── mysql.2005052300.php │ ├── mysql.2005052600.php │ ├── mysql.2005052700.php │ ├── mysql.2005052800.php │ ├── mysql.2005060300.php │ ├── mysql.2005060400.php │ ├── mysql.2005061200.php │ ├── mysql.2005062100.php │ ├── mysql.2005062600.php │ ├── mysql.2005072000.php │ ├── mysql.2005072300.php │ ├── mysql.2005080300.php │ ├── mysql.2005082700.php │ ├── mysql.2005082900.php │ ├── mysql.2005090700.php │ ├── mysql.2005101700.php │ ├── mysql.2005110600.php │ ├── mysql.2005122800.php │ ├── mysql.2005123000.php │ ├── mysql.2006011200.php │ ├── mysql.2006011300.php │ ├── mysql.2006020500.php │ ├── mysql.2006061200.php │ ├── mysql.2006081000.php │ ├── mysql.2006082300.php │ ├── mysql.2006082700.php │ ├── mysql.2006092400.php │ ├── mysql.2006100700.php │ ├── mysql.2006110700.php │ ├── mysql.2006111100.php │ ├── mysql.2007011200.php │ ├── mysql.2007012500.php │ ├── mysql.2007021500.php │ ├── mysql.2007022100.php │ ├── mysql.2007022200.php │ ├── mysql.2007022600.php │ ├── mysql.2007030800.php │ ├── mysql.2007032600.php │ ├── mysql.2007033100.php │ ├── mysql.2007041200.php │ ├── mysql.2007053100.php │ ├── mysql.2007062100.php │ ├── mysql.2007062200.php │ ├── mysql.2007070400.php │ ├── mysql.2007071100.php │ ├── mysql.2007071600.php │ ├── mysql.2007080100.php │ ├── mysql.2007101000.php │ ├── mysql.2007101700.php │ ├── mysql.2007102600.php │ ├── mysql.2007110600.php │ ├── mysql.2007111400.php │ ├── mysql.2007120300.php │ ├── mysql.2008010400.php │ ├── mysql.2008010700.php │ ├── mysql.2008011800.php │ ├── mysql.2008012200.php │ ├── mysql.2008020900.php │ ├── mysql.2008021500.php │ ├── mysql.2008021900.php │ ├── mysql.2008022000.php │ ├── mysql.2008032100.php │ ├── mysql.2008032700.php │ ├── mysql.2008042400.php │ ├── mysql.2008052300.php │ ├── mysql.2008061300.php │ ├── mysql.2008062400.php │ ├── mysql.2008070100.php │ ├── mysql.2008071700.php │ ├── mysql.2008080800.php │ ├── mysql.2008102000.php │ ├── mysql.2008102700.php │ ├── mysql.2008110100.php │ ├── mysql.2008111900.php │ ├── mysql.2008112400.php │ ├── mysql.2008122900.php │ ├── mysql.2009021600.php │ ├── mysql.2009031300.php │ ├── mysql.2009031700.php │ ├── mysql.2009040200.php │ ├── mysql.2009051200.php │ ├── mysql.2009060200.php │ ├── mysql.2009062300.php │ ├── mysql.2009082500.php │ ├── mysql.2009090900.php │ ├── mysql.2009091000.php │ ├── mysql.2009091001.php │ ├── mysql.2009091600.php │ ├── mysql.2009101600.php │ ├── mysql.2009103000.php │ ├── mysql.2009111000.php │ ├── mysql.2009111001.php │ ├── mysql.2009111700.php │ ├── mysql.2010011300.php │ ├── mysql.2010020700.php │ ├── mysql.2010031100.php │ ├── mysql.2010050600.php │ ├── mysql.2010051400.php │ ├── mysql.2010061100.php │ ├── mysql.2010061800.php │ ├── mysql.2010062200.php │ ├── mysql.2010062800.php │ ├── mysql.2010081700.php │ ├── mysql.2010121000.php │ ├── mysql.2010121400.php │ ├── mysql.2010121600.php │ ├── mysql.2010122000.php │ ├── mysql.2010122700.php │ ├── mysql.2011021700.php │ ├── mysql.2011022000.php │ ├── mysql.2011030700.php │ ├── mysql.2011031000.php │ ├── mysql.2011032400.php │ ├── mysql.2011032500.php │ ├── mysql.2011041500.php │ ├── mysql.2011082800.php │ ├── mysql.2011091100.php │ ├── mysql.2011091600.php │ ├── mysql.2011110800.php │ ├── mysql.2011113000.php │ ├── mysql.2012011800.php │ ├── mysql.2012021400.php │ ├── mysql.2012021800.php │ ├── mysql.2012030801.php │ ├── mysql.2012032900.php │ ├── mysql.2012040700.php │ ├── mysql.2012041100.php │ ├── mysql.2012041101.php │ ├── mysql.2012041102.php │ ├── mysql.2012042300.php │ ├── mysql.2012042500.php │ ├── mysql.2012050200.php │ ├── mysql.2012092000.php │ ├── mysql.2012092500.php │ ├── mysql.2012111100.php │ ├── mysql.2013031400.php │ ├── mysql.2013031800.php │ ├── mysql.2013032100.php │ ├── mysql.2013040200.php │ ├── mysql.2013042600.php │ ├── mysql.2013050700.php │ ├── mysql.2013051700.php │ ├── mysql.2013101400.php │ ├── mysql.2013110500.php │ ├── mysql.2013111900.php │ ├── mysql.2014012700.php │ ├── mysql.2014013100.php │ ├── mysql.2014020400.php │ ├── mysql.2014021400.php │ ├── mysql.2014021700.php │ ├── mysql.2014032900.php │ ├── mysql.2014040100.php │ ├── mysql.2014040400.php │ ├── mysql.2014040700.php │ ├── mysql.2014061200.php │ ├── mysql.2014063000.php │ ├── mysql.2014072500.php │ ├── mysql.2014090200.php │ ├── mysql.2014090600.php │ ├── mysql.2014111200.php │ ├── mysql.2014111400.php │ ├── mysql.2015020900.php │ ├── mysql.2015030300.php │ ├── mysql.2015031900.php │ ├── mysql.2015033000.php │ ├── mysql.2015040100.php │ ├── mysql.2015040200.php │ ├── mysql.2015040800.php │ ├── mysql.2015041000.php │ ├── mysql.2015041001.php │ ├── mysql.2015041200.php │ ├── mysql.2015041400.php │ ├── mysql.2015041500.php │ ├── mysql.2015042100.php │ ├── mysql.2015042700.php │ ├── mysql.2015072300.php │ ├── mysql.2015080500.php │ ├── mysql.2015080700.php │ ├── mysql.2015082700.php │ ├── mysql.2015090200.php │ ├── mysql.2015090300.php │ ├── mysql.2015090400.php │ ├── mysql.2015091300.php │ ├── mysql.2015100100.php │ ├── mysql.2015100101.php │ ├── mysql.2015110600.php │ ├── mysql.2015111300.php │ ├── mysql.2015111800.php │ ├── mysql.2015111900.php │ ├── mysql.2015112000.php │ ├── mysql.2015112001.php │ ├── mysql.2015120200.php │ ├── mysql.2015120201.php │ ├── mysql.2015120202.php │ ├── mysql.2015120800.php │ ├── mysql.2015120900.php │ ├── mysql.2015120901.php │ ├── mysql.2015121100.php │ ├── mysql.2015121800.php │ ├── mysql.2015122200.php │ ├── mysql.2015122300.php │ ├── mysql.2015122301.php │ ├── mysql.2016011200.php │ ├── mysql.2016011800.php │ ├── mysql.2016011900.php │ ├── mysql.2016012500.php │ ├── mysql.2016012501.php │ ├── mysql.2016012600.php │ ├── mysql.2016012800.php │ ├── mysql.2016020200.php │ ├── mysql.2016020300.php │ ├── mysql.2016020500.php │ ├── mysql.2016020501.php │ ├── mysql.2016030700.php │ ├── mysql.2016031400.php │ ├── mysql.2016031800.php │ ├── mysql.2016031900.php │ ├── mysql.2016032100.php │ ├── mysql.2016032500.php │ ├── mysql.2016033100.php │ ├── mysql.2016040700.php │ ├── mysql.2016041900.php │ ├── mysql.2016051000.php │ ├── mysql.2016053000.php │ ├── mysql.2016060600.php │ ├── mysql.2016060800.php │ ├── mysql.2016062300.php │ ├── mysql.2016062400.php │ ├── mysql.2016062401.php │ ├── mysql.2016062800.php │ ├── mysql.2016070100.php │ ├── mysql.2016070500.php │ ├── mysql.2016070700.php │ ├── mysql.2016071200.php │ ├── mysql.2016071500.php │ ├── mysql.2016071900.php │ ├── mysql.2016072000.php │ ├── mysql.2016080500.php │ ├── mysql.2016080800.php │ ├── mysql.2016080801.php │ ├── mysql.2016082400.php │ ├── mysql.2016082500.php │ ├── mysql.2016082600.php │ ├── mysql.2016082900.php │ ├── mysql.2016090700.php │ ├── mysql.2016091300.php │ ├── mysql.2016092100.php │ ├── mysql.2016092600.php │ ├── mysql.2016092900.php │ ├── mysql.2016100500.php │ ├── mysql.2016100600.php │ ├── mysql.2016101000.php │ ├── mysql.2016101700.php │ ├── mysql.2016101800.php │ ├── mysql.2016102100.php │ ├── mysql.2016102500.php │ ├── mysql.2016110800.php │ ├── mysql.2016112500.php │ ├── mysql.2016112800.php │ ├── mysql.2016120600.php │ ├── mysql.2016121200.php │ ├── mysql.2016121400.php │ ├── mysql.2016121401.php │ ├── mysql.2016122100.php │ ├── mysql.2017010900.php │ ├── mysql.2017010901.php │ ├── mysql.2017011300.php │ ├── mysql.2017012400.php │ ├── mysql.2017013100.php │ ├── mysql.2017013101.php │ ├── mysql.2017020100.php │ ├── mysql.2017020600.php │ ├── mysql.2017021400.php │ ├── mysql.2017022200.php │ ├── mysql.2017022700.php │ ├── mysql.2017030100.php │ ├── mysql.2017030101.php │ ├── mysql.2017030300.php │ ├── mysql.2017030800.php │ ├── mysql.2017031000.php │ ├── mysql.2017031400.php │ ├── mysql.2017031500.php │ ├── mysql.2017031600.php │ ├── mysql.2017032000.php │ ├── mysql.2017032200.php │ ├── mysql.2017040700.php │ ├── mysql.2017041800.php │ ├── mysql.2017041801.php │ ├── mysql.2017042700.php │ ├── mysql.2017051200.php │ ├── mysql.2017051201.php │ ├── mysql.2017061600.php │ ├── mysql.2017061900.php │ ├── mysql.2017062000.php │ ├── mysql.2017063000.php │ ├── mysql.2017070100.php │ ├── mysql.2017070300.php │ ├── mysql.2017070400.php │ ├── mysql.2017070600.php │ ├── mysql.2017070700.php │ ├── mysql.2017071000.php │ ├── mysql.2017071100.php │ ├── mysql.2017071900.php │ ├── mysql.2017072100.php │ ├── mysql.2017080500.php │ ├── mysql.2017080600.php │ ├── mysql.2017090800.php │ ├── mysql.2017091300.php │ ├── mysql.2017091400.php │ ├── mysql.2017092400.php │ ├── mysql.2017092800.php │ ├── mysql.2017092900.php │ ├── mysql.2017092901.php │ ├── mysql.2017101100.php │ ├── mysql.2017101101.php │ ├── mysql.2017101102.php │ ├── mysql.2017101103.php │ ├── mysql.2017101200.php │ ├── mysql.2017101201.php │ ├── mysql.2017101202.php │ ├── mysql.2017101203.php │ ├── mysql.2017101204.php │ ├── mysql.2017101205.php │ ├── mysql.2017101600.php │ ├── mysql.2017101601.php │ ├── mysql.2017101602.php │ ├── mysql.2017101800.php │ ├── mysql.2017102600.php │ ├── mysql.2017103000.php │ ├── mysql.2017103100.php │ ├── mysql.2017103101.php │ ├── mysql.2017110300.php │ ├── mysql.2017111300.php │ ├── mysql.2017112100.php │ ├── mysql.2017112200.php │ ├── mysql.2018010500.php │ ├── mysql.2018011700.php │ ├── mysql.2018012200.php │ ├── mysql.2018020800.php │ ├── mysql.2018022200.php │ ├── mysql.2018022400.php │ ├── mysql.2018022500.php │ ├── mysql.2018022600.php │ ├── mysql.2018032100.php │ ├── mysql.2018032300.php │ ├── mysql.2018032900.php │ ├── mysql.2018041400.php │ ├── mysql.2018042700.php │ ├── mysql.2018051400.php │ ├── mysql.2018051500.php │ ├── mysql.2018051700.php │ ├── mysql.2018052000.php │ ├── mysql.2018052800.php │ ├── mysql.2018062000.php │ ├── mysql.2018070200.php │ ├── mysql.2018070300.php │ ├── mysql.2018070600.php │ ├── mysql.2018073100.php │ ├── mysql.2018081400.php │ ├── mysql.2018081401.php │ ├── mysql.2018081600.php │ ├── mysql.2018081700.php │ ├── mysql.2018082100.php │ ├── mysql.2018082300.php │ ├── mysql.2018090100.php │ ├── mysql.2018090500.php │ ├── mysql.2018090800.php │ ├── mysql.2018091000.php │ ├── mysql.2018091100.php │ ├── mysql.2018091300.php │ ├── mysql.2018091301.php │ ├── mysql.2018091800.php │ ├── mysql.2018091801.php │ ├── mysql.2018092600.php │ ├── mysql.2018092601.php │ ├── mysql.2018093000.php │ ├── mysql.2018110700.php │ ├── mysql.2018111600.php │ ├── mysql.2018112800.php │ ├── mysql.2018121200.php │ ├── mysql.2018121300.php │ ├── mysql.2019012100.php │ ├── mysql.2019013100.php │ ├── mysql.2019032100.php │ ├── mysql.2019032500.php │ ├── mysql.2019032700.php │ ├── mysql.2019040300.php │ ├── mysql.2019040400.php │ ├── mysql.2019040500.php │ ├── mysql.2019041200.php │ ├── mysql.2019042300.php │ ├── mysql.2019042400.php │ ├── mysql.2019060300.php │ ├── mysql.2019071500.php │ ├── mysql.2019072500.php │ ├── mysql.2019080100.php │ ├── mysql.2019081200.php │ ├── mysql.2019082000.php │ ├── mysql.2019082200.php │ ├── mysql.2019082900.php │ ├── mysql.2019083000.php │ ├── mysql.2019083001.php │ ├── mysql.2019090200.php │ ├── mysql.2019091200.php │ ├── mysql.2019091300.php │ ├── mysql.2019091301.php │ ├── mysql.2019091600.php │ ├── mysql.2019091700.php │ ├── mysql.2019091701.php │ ├── mysql.2019091702.php │ ├── mysql.2019092000.php │ ├── mysql.2019100900.php │ ├── mysql.2019100901.php │ ├── mysql.2019101000.php │ ├── mysql.2019102100.php │ ├── mysql.2019102400.php │ ├── mysql.2019102500.php │ ├── mysql.2019102900.php │ ├── mysql.2019102901.php │ ├── mysql.2019102902.php │ ├── mysql.2019110700.php │ ├── mysql.2019112000.php │ ├── mysql.2019121800.php │ ├── mysql.2020010400.php │ ├── mysql.2020011000.php │ ├── mysql.2020011400.php │ ├── mysql.2020011401.php │ ├── mysql.2020011402.php │ ├── mysql.2020013100.php │ ├── mysql.2020013101.php │ ├── mysql.2020020500.php │ ├── mysql.2020030300.php │ ├── mysql.2020030500.php │ ├── mysql.2020031000.php │ ├── mysql.2020040600.php │ ├── mysql.2020040800.php │ ├── mysql.2020040900.php │ ├── mysql.2020040901.php │ ├── mysql.2020040902.php │ ├── mysql.2020040903.php │ ├── mysql.2020041000.php │ ├── mysql.2020041001.php │ ├── mysql.2020041600.php │ ├── mysql.2020042000.php │ ├── mysql.2020042700.php │ ├── mysql.2020042701.php │ ├── mysql.2020050400.php │ ├── mysql.2020051300.php │ ├── mysql.2020052900.php │ ├── mysql.2020060900.php │ ├── mysql.2020071600.php │ ├── mysql.2020073100.php │ ├── mysql.2020080300.php │ ├── mysql.2020081200.php │ ├── mysql.2020081300.php │ ├── mysql.2020081400.php │ ├── mysql.2020081800.php │ ├── mysql.2020081900.php │ ├── mysql.2020082500.php │ ├── mysql.2020082600.php │ ├── mysql.2020082800.php │ ├── mysql.2020083100.php │ ├── mysql.2020090200.php │ ├── mysql.2020091100.php │ ├── mysql.2020091600.php │ ├── mysql.2020092100.php │ ├── mysql.2020092400.php │ ├── mysql.2020100100.php │ ├── mysql.2020102200.php │ ├── mysql.2020110200.php │ ├── mysql.2020110201.php │ ├── mysql.2020110400.php │ ├── mysql.2020110600.php │ ├── mysql.2020111000.php │ ├── mysql.2020112600.php │ ├── mysql.2020112601.php │ ├── mysql.2020112800.php │ ├── mysql.2020120800.php │ ├── mysql.2020121400.php │ ├── mysql.2020122200.php │ ├── mysql.2021010700.php │ ├── mysql.2021012100.php │ ├── mysql.2021020300.php │ ├── mysql.2021020301.php │ ├── mysql.2021021200.php │ ├── mysql.2021021600.php │ ├── mysql.2021021800.php │ ├── mysql.2021022100.php │ ├── mysql.2021022500.php │ ├── mysql.2021030900.php │ ├── mysql.2021031000.php │ ├── mysql.2021031800.php │ ├── mysql.2021032200.php │ ├── mysql.2021032300.php │ ├── mysql.2021040400.php │ ├── mysql.2021040500.php │ ├── mysql.2021040900.php │ ├── mysql.2021042200.php │ ├── mysql.2021042800.php │ ├── mysql.2021050700.php │ ├── mysql.2021050701.php │ ├── mysql.2021051000.php │ ├── mysql.2021051300.php │ ├── mysql.2021051400.php │ ├── mysql.2021051900.php │ ├── mysql.2021052400.php │ ├── mysql.2021061500.php │ ├── mysql.2021061600.php │ ├── mysql.2021061601.php │ ├── mysql.2021061700.php │ ├── mysql.2021070100.php │ ├── mysql.2021070500.php │ ├── mysql.2021070600.php │ ├── mysql.2021070700.php │ ├── mysql.2021070900.php │ ├── mysql.2021072000.php │ ├── mysql.2021072100.php │ ├── mysql.2021072101.php │ ├── mysql.2021072102.php │ ├── mysql.2021072103.php │ ├── mysql.2021072300.php │ ├── mysql.2021072600.php │ ├── mysql.2021072900.php │ ├── mysql.2021082800.php │ ├── mysql.2021100500.php │ ├── mysql.2021101900.php │ ├── mysql.2021102700.php │ ├── mysql.2021110800.php │ ├── mysql.2021110900.php │ ├── mysql.2021120100.php │ ├── mysql.2021121000.php │ ├── mysql.2021121500.php │ ├── mysql.2022011300.php │ ├── mysql.2022012000.php │ ├── mysql.2022030100.php │ ├── mysql.2022060900.php │ ├── mysql.2022061300.php │ ├── mysql.2022061301.php │ ├── mysql.2022062400.php │ ├── mysql.2022062401.php │ ├── mysql.2022062402.php │ ├── mysql.2022062700.php │ ├── mysql.2022062701.php │ ├── mysql.2022062702.php │ ├── mysql.2022062703.php │ ├── mysql.2022062704.php │ ├── mysql.2022062705.php │ ├── mysql.2022062706.php │ ├── mysql.2022062800.php │ ├── mysql.2022062801.php │ ├── mysql.2022062802.php │ ├── mysql.2022062803.php │ ├── mysql.2022062804.php │ ├── mysql.2022062805.php │ ├── mysql.2022062806.php │ ├── mysql.2022062807.php │ ├── mysql.2022062808.php │ ├── mysql.2022070400.php │ ├── mysql.2022070401.php │ ├── mysql.2022070700.php │ ├── mysql.2022071800.php │ ├── mysql.2022081700.php │ ├── mysql.2022081800.php │ ├── mysql.2022082600.php │ ├── mysql.2022082601.php │ ├── mysql.2022090800.php │ ├── mysql.2022091200.php │ ├── mysql.2022091500.php │ ├── mysql.2022091900.php │ ├── mysql.2022092000.php │ ├── mysql.2022092200.php │ ├── mysql.2022092201.php │ ├── mysql.2022101300.php │ ├── mysql.2022101700.php │ ├── mysql.2022110200.php │ ├── mysql.2022110400.php │ ├── mysql.2022110900.php │ ├── mysql.2022111600.php │ ├── mysql.2022120700.php │ ├── mysql.2022120701.php │ ├── mysql.2022120702.php │ ├── mysql.2022120800.php │ ├── mysql.2022121500.php │ ├── mysql.2023011100.php │ ├── mysql.2023020900.php │ ├── mysql.2023021000.php │ ├── mysql.2023021500.php │ ├── mysql.2023022100.php │ ├── mysql.2023022101.php │ ├── mysql.2023022400.php │ ├── mysql.2023022401.php │ ├── mysql.2023022402.php │ ├── mysql.2023030300.php │ ├── mysql.2023030800.php │ ├── mysql.2023030900.php │ ├── mysql.2023040500.php │ ├── mysql.2023041400.php │ ├── mysql.2023052300.php │ ├── mysql.2023052500.php │ ├── mysql.2023053000.php │ ├── mysql.2023060700.php │ ├── mysql.2023061400.php │ ├── mysql.2023061500.php │ ├── mysql.2023062600.php │ ├── mysql.2023063000.php │ ├── mysql.2023070600.php │ ├── mysql.2023070601.php │ ├── mysql.2023082500.php │ ├── mysql.2023082800.php │ ├── mysql.2023082801.php │ ├── mysql.2023102500.php │ ├── mysql.2023122900.php │ ├── mysql.2024010400.php │ ├── mysql.2024011700.php │ ├── mysql.2024012600.php │ ├── mysql.2024022100.php │ ├── mysql.2024022800.php │ ├── mysql.2024041100.php │ ├── mysql.2024050700.php │ ├── mysql.2024062100.php │ ├── mysql.2024071600.php │ ├── mysql.2024071800.php │ ├── mysql.2024071900.php │ ├── mysql.2024072200.php │ ├── mysql.2024080900.php │ ├── mysql.2024081200.php │ ├── mysql.2024081300.php │ ├── mysql.2024081400.php │ ├── mysql.2024081401.php │ ├── mysql.2024082200.php │ ├── mysql.2024082300.php │ ├── mysql.2024082301.php │ ├── mysql.2024082302.php │ ├── mysql.2024082600.php │ ├── mysql.2024082700.php │ ├── mysql.2024092600.php │ ├── mysql.2024092700.php │ ├── mysql.2024092701.php │ ├── mysql.2024100400.php │ ├── mysql.2024100401.php │ ├── mysql.2024100800.php │ ├── mysql.2024110500.php │ ├── mysql.2024110800.php │ ├── mysql.2024112100.php │ ├── mysql.2025011600.php │ ├── mysql.2025012300.php │ ├── mysql.2025020400.php │ ├── mysql.2025021300.php │ ├── mysql.2025042400.php │ ├── mysql.2025051600.php │ ├── mysql.2025060500.php │ ├── mysql.2025061800.php │ ├── mysql.2025062000.php │ ├── mysql.2025070300.php │ ├── mysql.2025081300.php │ ├── mysql.2025091200.php │ ├── mysql.2025100200.php │ ├── mysql.2025101700.php │ ├── mysql.2025102200.php │ ├── mysql.2025102400.php │ ├── mysql.2025102900.php │ ├── mysql.2025103100.php │ ├── mysql.2025111300.php │ ├── mysql.2025120100.php │ ├── postgres.2004030800.php │ ├── postgres.2004031000.php │ ├── postgres.2004031100.php │ ├── postgres.2004031400.php │ ├── postgres.2004031401.php │ ├── postgres.2004031402.php │ ├── postgres.2004040701.php │ ├── postgres.2004040800.php │ ├── postgres.2004041600.php │ ├── postgres.2004042000.php │ ├── postgres.2004042300.php │ ├── postgres.2004061900.php │ ├── postgres.2004070100.php │ ├── postgres.2004070800.php │ ├── postgres.2004071200.php │ ├── postgres.2004071400.php │ ├── postgres.2004072100.php │ ├── postgres.2004072700.php │ ├── postgres.2004081400.php │ ├── postgres.2004081700.php │ ├── postgres.2004081800.php │ ├── postgres.2004090700.php │ ├── postgres.2004090800.php │ ├── postgres.2004101800.php │ ├── postgres.2004102900.php │ ├── postgres.2004111300.php │ ├── postgres.2004111700.php │ ├── postgres.2004112100.php │ ├── postgres.2004112400.php │ ├── postgres.2004112600.php │ ├── postgres.2004112700.php │ ├── postgres.2004120300.php │ ├── postgres.2004120400.php │ ├── postgres.2004120600.php │ ├── postgres.2004121000.php │ ├── postgres.2005012600.php │ ├── postgres.2005012700.php │ ├── postgres.2005013000.php │ ├── postgres.2005020600.php │ ├── postgres.2005021500.php │ ├── postgres.2005022300.php │ ├── postgres.2005022500.php │ ├── postgres.2005030100.php │ ├── postgres.2005030200.php │ ├── postgres.2005030800.php │ ├── postgres.2005031000.php │ ├── postgres.2005033000.php │ ├── postgres.2005033103.php │ ├── postgres.2005042100.php │ ├── postgres.2005042400.php │ ├── postgres.2005052300.php │ ├── postgres.2005052600.php │ ├── postgres.2005052700.php │ ├── postgres.2005052800.php │ ├── postgres.2005060300.php │ ├── postgres.2005060400.php │ ├── postgres.2005061200.php │ ├── postgres.2005062100.php │ ├── postgres.2005062600.php │ ├── postgres.2005072000.php │ ├── postgres.2005072300.php │ ├── postgres.2005080300.php │ ├── postgres.2005082700.php │ ├── postgres.2005082900.php │ ├── postgres.2005090700.php │ ├── postgres.2005101700.php │ ├── postgres.2005110600.php │ ├── postgres.2005122800.php │ ├── postgres.2005123000.php │ ├── postgres.2006011200.php │ ├── postgres.2006011300.php │ ├── postgres.2006020500.php │ ├── postgres.2006061200.php │ ├── postgres.2006081000.php │ ├── postgres.2006082300.php │ ├── postgres.2006082700.php │ ├── postgres.2006092400.php │ ├── postgres.2006100700.php │ ├── postgres.2006110700.php │ ├── postgres.2006111100.php │ ├── postgres.2007011200.php │ ├── postgres.2007012500.php │ ├── postgres.2007021500.php │ ├── postgres.2007022100.php │ ├── postgres.2007022200.php │ ├── postgres.2007022600.php │ ├── postgres.2007030800.php │ ├── postgres.2007032600.php │ ├── postgres.2007033100.php │ ├── postgres.2007041200.php │ ├── postgres.2007053100.php │ ├── postgres.2007062100.php │ ├── postgres.2007062200.php │ ├── postgres.2007070400.php │ ├── postgres.2007071100.php │ ├── postgres.2007071600.php │ ├── postgres.2007080100.php │ ├── postgres.2007101000.php │ ├── postgres.2007101700.php │ ├── postgres.2007102600.php │ ├── postgres.2007110600.php │ ├── postgres.2007111400.php │ ├── postgres.2007120300.php │ ├── postgres.2008010400.php │ ├── postgres.2008010700.php │ ├── postgres.2008011800.php │ ├── postgres.2008012200.php │ ├── postgres.2008020900.php │ ├── postgres.2008021500.php │ ├── postgres.2008021900.php │ ├── postgres.2008022000.php │ ├── postgres.2008032100.php │ ├── postgres.2008032700.php │ ├── postgres.2008042400.php │ ├── postgres.2008052300.php │ ├── postgres.2008061300.php │ ├── postgres.2008062400.php │ ├── postgres.2008070100.php │ ├── postgres.2008071700.php │ ├── postgres.2008080800.php │ ├── postgres.2008102000.php │ ├── postgres.2008102700.php │ ├── postgres.2008110100.php │ ├── postgres.2008111900.php │ ├── postgres.2008112400.php │ ├── postgres.2008122900.php │ ├── postgres.2009021600.php │ ├── postgres.2009031300.php │ ├── postgres.2009031700.php │ ├── postgres.2009040200.php │ ├── postgres.2009051200.php │ ├── postgres.2009060200.php │ ├── postgres.2009062300.php │ ├── postgres.2009082500.php │ ├── postgres.2009090900.php │ ├── postgres.2009091000.php │ ├── postgres.2009091001.php │ ├── postgres.2009091600.php │ ├── postgres.2009101600.php │ ├── postgres.2009103000.php │ ├── postgres.2009111001.php │ ├── postgres.2009111700.php │ ├── postgres.2010011300.php │ ├── postgres.2010020700.php │ ├── postgres.2010031100.php │ ├── postgres.2010050600.php │ ├── postgres.2010051400.php │ ├── postgres.2010061100.php │ ├── postgres.2010061800.php │ ├── postgres.2010062200.php │ ├── postgres.2010062800.php │ ├── postgres.2010081700.php │ ├── postgres.2010121000.php │ ├── postgres.2010121400.php │ ├── postgres.2010121600.php │ ├── postgres.2010122000.php │ ├── postgres.2010122700.php │ ├── postgres.2011021700.php │ ├── postgres.2011022000.php │ ├── postgres.2011030700.php │ ├── postgres.2011031000.php │ ├── postgres.2011032400.php │ ├── postgres.2011032500.php │ ├── postgres.2011041500.php │ ├── postgres.2011082800.php │ ├── postgres.2011091100.php │ ├── postgres.2011091600.php │ ├── postgres.2011110800.php │ ├── postgres.2011113000.php │ ├── postgres.2012011800.php │ ├── postgres.2012021400.php │ ├── postgres.2012021800.php │ ├── postgres.2012030801.php │ ├── postgres.2012032900.php │ ├── postgres.2012040700.php │ ├── postgres.2012041100.php │ ├── postgres.2012041101.php │ ├── postgres.2012041102.php │ ├── postgres.2012042300.php │ ├── postgres.2012042500.php │ ├── postgres.2012050200.php │ ├── postgres.2012092000.php │ ├── postgres.2012092500.php │ ├── postgres.2012111100.php │ ├── postgres.2013031400.php │ ├── postgres.2013031800.php │ ├── postgres.2013032100.php │ ├── postgres.2013040200.php │ ├── postgres.2013042600.php │ ├── postgres.2013050700.php │ ├── postgres.2013051700.php │ ├── postgres.2013101400.php │ ├── postgres.2013110500.php │ ├── postgres.2013111900.php │ ├── postgres.2014012700.php │ ├── postgres.2014013100.php │ ├── postgres.2014020400.php │ ├── postgres.2014021400.php │ ├── postgres.2014021700.php │ ├── postgres.2014032900.php │ ├── postgres.2014040100.php │ ├── postgres.2014040400.php │ ├── postgres.2014040700.php │ ├── postgres.2014061200.php │ ├── postgres.2014063000.php │ ├── postgres.2014072500.php │ ├── postgres.2014090200.php │ ├── postgres.2014090600.php │ ├── postgres.2014111200.php │ ├── postgres.2014111400.php │ ├── postgres.2015020900.php │ ├── postgres.2015030300.php │ ├── postgres.2015031900.php │ ├── postgres.2015033000.php │ ├── postgres.2015040100.php │ ├── postgres.2015040200.php │ ├── postgres.2015040800.php │ ├── postgres.2015041000.php │ ├── postgres.2015041001.php │ ├── postgres.2015041200.php │ ├── postgres.2015041400.php │ ├── postgres.2015041500.php │ ├── postgres.2015042100.php │ ├── postgres.2015042700.php │ ├── postgres.2015072300.php │ ├── postgres.2015080500.php │ ├── postgres.2015080700.php │ ├── postgres.2015082700.php │ ├── postgres.2015090200.php │ ├── postgres.2015090300.php │ ├── postgres.2015090400.php │ ├── postgres.2015091300.php │ ├── postgres.2015100100.php │ ├── postgres.2015100101.php │ ├── postgres.2015110600.php │ ├── postgres.2015111300.php │ ├── postgres.2015111800.php │ ├── postgres.2015111900.php │ ├── postgres.2015112000.php │ ├── postgres.2015112001.php │ ├── postgres.2015120200.php │ ├── postgres.2015120201.php │ ├── postgres.2015120202.php │ ├── postgres.2015120800.php │ ├── postgres.2015120900.php │ ├── postgres.2015120901.php │ ├── postgres.2015121100.php │ ├── postgres.2015121800.php │ ├── postgres.2015122200.php │ ├── postgres.2015122300.php │ ├── postgres.2015122301.php │ ├── postgres.2016011200.php │ ├── postgres.2016011800.php │ ├── postgres.2016011900.php │ ├── postgres.2016012500.php │ ├── postgres.2016012501.php │ ├── postgres.2016012600.php │ ├── postgres.2016012800.php │ ├── postgres.2016020200.php │ ├── postgres.2016020300.php │ ├── postgres.2016020500.php │ ├── postgres.2016020501.php │ ├── postgres.2016030700.php │ ├── postgres.2016031400.php │ ├── postgres.2016031800.php │ ├── postgres.2016031900.php │ ├── postgres.2016032100.php │ ├── postgres.2016032500.php │ ├── postgres.2016033100.php │ ├── postgres.2016040700.php │ ├── postgres.2016041900.php │ ├── postgres.2016051000.php │ ├── postgres.2016053000.php │ ├── postgres.2016060600.php │ ├── postgres.2016060800.php │ ├── postgres.2016062300.php │ ├── postgres.2016062400.php │ ├── postgres.2016062401.php │ ├── postgres.2016062800.php │ ├── postgres.2016070100.php │ ├── postgres.2016070500.php │ ├── postgres.2016070700.php │ ├── postgres.2016071200.php │ ├── postgres.2016071500.php │ ├── postgres.2016071900.php │ ├── postgres.2016072000.php │ ├── postgres.2016080500.php │ ├── postgres.2016080800.php │ ├── postgres.2016080801.php │ ├── postgres.2016082400.php │ ├── postgres.2016082500.php │ ├── postgres.2016082600.php │ ├── postgres.2016082900.php │ ├── postgres.2016090700.php │ ├── postgres.2016091300.php │ ├── postgres.2016092100.php │ ├── postgres.2016092600.php │ ├── postgres.2016092900.php │ ├── postgres.2016100500.php │ ├── postgres.2016100600.php │ ├── postgres.2016101000.php │ ├── postgres.2016101700.php │ ├── postgres.2016101800.php │ ├── postgres.2016102100.php │ ├── postgres.2016102500.php │ ├── postgres.2016110800.php │ ├── postgres.2016112500.php │ ├── postgres.2016112800.php │ ├── postgres.2016120600.php │ ├── postgres.2016121200.php │ ├── postgres.2016121400.php │ ├── postgres.2016121401.php │ ├── postgres.2016122100.php │ ├── postgres.2017010900.php │ ├── postgres.2017010901.php │ ├── postgres.2017011300.php │ ├── postgres.2017012400.php │ ├── postgres.2017013100.php │ ├── postgres.2017013101.php │ ├── postgres.2017020100.php │ ├── postgres.2017020600.php │ ├── postgres.2017021400.php │ ├── postgres.2017022200.php │ ├── postgres.2017022700.php │ ├── postgres.2017030100.php │ ├── postgres.2017030101.php │ ├── postgres.2017030300.php │ ├── postgres.2017030800.php │ ├── postgres.2017031000.php │ ├── postgres.2017031400.php │ ├── postgres.2017031500.php │ ├── postgres.2017031600.php │ ├── postgres.2017032000.php │ ├── postgres.2017032200.php │ ├── postgres.2017040700.php │ ├── postgres.2017041800.php │ ├── postgres.2017041801.php │ ├── postgres.2017042700.php │ ├── postgres.2017051200.php │ ├── postgres.2017051201.php │ ├── postgres.2017061600.php │ ├── postgres.2017061900.php │ ├── postgres.2017062000.php │ ├── postgres.2017063000.php │ ├── postgres.2017070100.php │ ├── postgres.2017070300.php │ ├── postgres.2017070400.php │ ├── postgres.2017070600.php │ ├── postgres.2017070700.php │ ├── postgres.2017071000.php │ ├── postgres.2017071100.php │ ├── postgres.2017071900.php │ ├── postgres.2017072100.php │ ├── postgres.2017080500.php │ ├── postgres.2017080600.php │ ├── postgres.2017090800.php │ ├── postgres.2017091300.php │ ├── postgres.2017091400.php │ ├── postgres.2017092400.php │ ├── postgres.2017092800.php │ ├── postgres.2017092900.php │ ├── postgres.2017092901.php │ ├── postgres.2017101100.php │ ├── postgres.2017101101.php │ ├── postgres.2017101102.php │ ├── postgres.2017101103.php │ ├── postgres.2017101200.php │ ├── postgres.2017101201.php │ ├── postgres.2017101202.php │ ├── postgres.2017101203.php │ ├── postgres.2017101204.php │ ├── postgres.2017101205.php │ ├── postgres.2017101600.php │ ├── postgres.2017101601.php │ ├── postgres.2017101602.php │ ├── postgres.2017101800.php │ ├── postgres.2017102600.php │ ├── postgres.2017103000.php │ ├── postgres.2017103100.php │ ├── postgres.2017103101.php │ ├── postgres.2017110300.php │ ├── postgres.2017111300.php │ ├── postgres.2017112100.php │ ├── postgres.2017112200.php │ ├── postgres.2018010500.php │ ├── postgres.2018011700.php │ ├── postgres.2018012200.php │ ├── postgres.2018020800.php │ ├── postgres.2018022200.php │ ├── postgres.2018022400.php │ ├── postgres.2018022500.php │ ├── postgres.2018022600.php │ ├── postgres.2018032100.php │ ├── postgres.2018032300.php │ ├── postgres.2018032900.php │ ├── postgres.2018041400.php │ ├── postgres.2018042700.php │ ├── postgres.2018051400.php │ ├── postgres.2018051500.php │ ├── postgres.2018051700.php │ ├── postgres.2018052000.php │ ├── postgres.2018052800.php │ ├── postgres.2018062000.php │ ├── postgres.2018070200.php │ ├── postgres.2018070300.php │ ├── postgres.2018070600.php │ ├── postgres.2018073100.php │ ├── postgres.2018081400.php │ ├── postgres.2018081401.php │ ├── postgres.2018081600.php │ ├── postgres.2018081700.php │ ├── postgres.2018082100.php │ ├── postgres.2018082300.php │ ├── postgres.2018090100.php │ ├── postgres.2018090500.php │ ├── postgres.2018090800.php │ ├── postgres.2018091000.php │ ├── postgres.2018091100.php │ ├── postgres.2018091300.php │ ├── postgres.2018091301.php │ ├── postgres.2018091800.php │ ├── postgres.2018091801.php │ ├── postgres.2018092600.php │ ├── postgres.2018092601.php │ ├── postgres.2018093000.php │ ├── postgres.2018110700.php │ ├── postgres.2018111600.php │ ├── postgres.2018112800.php │ ├── postgres.2018121200.php │ ├── postgres.2018121300.php │ ├── postgres.2019012100.php │ ├── postgres.2019013100.php │ ├── postgres.2019032100.php │ ├── postgres.2019032500.php │ ├── postgres.2019032700.php │ ├── postgres.2019040300.php │ ├── postgres.2019040400.php │ ├── postgres.2019040500.php │ ├── postgres.2019041200.php │ ├── postgres.2019042300.php │ ├── postgres.2019042400.php │ ├── postgres.2019060300.php │ ├── postgres.2019071500.php │ ├── postgres.2019072500.php │ ├── postgres.2019080100.php │ ├── postgres.2019081200.php │ ├── postgres.2019082000.php │ ├── postgres.2019082200.php │ ├── postgres.2019082900.php │ ├── postgres.2019083000.php │ ├── postgres.2019083001.php │ ├── postgres.2019090200.php │ ├── postgres.2019091200.php │ ├── postgres.2019091300.php │ ├── postgres.2019091301.php │ ├── postgres.2019091600.php │ ├── postgres.2019091700.php │ ├── postgres.2019091701.php │ ├── postgres.2019091702.php │ ├── postgres.2019092000.php │ ├── postgres.2019100900.php │ ├── postgres.2019100901.php │ ├── postgres.2019101000.php │ ├── postgres.2019102100.php │ ├── postgres.2019102400.php │ ├── postgres.2019102500.php │ ├── postgres.2019102900.php │ ├── postgres.2019102901.php │ ├── postgres.2019102902.php │ ├── postgres.2019110700.php │ ├── postgres.2019112000.php │ ├── postgres.2019121800.php │ ├── postgres.2020010400.php │ ├── postgres.2020011000.php │ ├── postgres.2020011400.php │ ├── postgres.2020011401.php │ ├── postgres.2020011402.php │ ├── postgres.2020013100.php │ ├── postgres.2020013101.php │ ├── postgres.2020020500.php │ ├── postgres.2020030300.php │ ├── postgres.2020030500.php │ ├── postgres.2020031000.php │ ├── postgres.2020040600.php │ ├── postgres.2020040800.php │ ├── postgres.2020040900.php │ ├── postgres.2020040901.php │ ├── postgres.2020040902.php │ ├── postgres.2020040903.php │ ├── postgres.2020041000.php │ ├── postgres.2020041001.php │ ├── postgres.2020041600.php │ ├── postgres.2020042000.php │ ├── postgres.2020042700.php │ ├── postgres.2020042701.php │ ├── postgres.2020050400.php │ ├── postgres.2020051300.php │ ├── postgres.2020052900.php │ ├── postgres.2020060900.php │ ├── postgres.2020071600.php │ ├── postgres.2020073100.php │ ├── postgres.2020080300.php │ ├── postgres.2020081200.php │ ├── postgres.2020081300.php │ ├── postgres.2020081400.php │ ├── postgres.2020081800.php │ ├── postgres.2020081900.php │ ├── postgres.2020082500.php │ ├── postgres.2020082600.php │ ├── postgres.2020082800.php │ ├── postgres.2020083100.php │ ├── postgres.2020090200.php │ ├── postgres.2020091100.php │ ├── postgres.2020091600.php │ ├── postgres.2020092100.php │ ├── postgres.2020092400.php │ ├── postgres.2020100100.php │ ├── postgres.2020102200.php │ ├── postgres.2020110200.php │ ├── postgres.2020110201.php │ ├── postgres.2020110400.php │ ├── postgres.2020110600.php │ ├── postgres.2020111000.php │ ├── postgres.2020112600.php │ ├── postgres.2020112601.php │ ├── postgres.2020112800.php │ ├── postgres.2020120800.php │ ├── postgres.2020121400.php │ ├── postgres.2020122200.php │ ├── postgres.2021010700.php │ ├── postgres.2021012100.php │ ├── postgres.2021020300.php │ ├── postgres.2021020301.php │ ├── postgres.2021021200.php │ ├── postgres.2021021600.php │ ├── postgres.2021021800.php │ ├── postgres.2021022100.php │ ├── postgres.2021022500.php │ ├── postgres.2021030900.php │ ├── postgres.2021031000.php │ ├── postgres.2021031800.php │ ├── postgres.2021032200.php │ ├── postgres.2021032300.php │ ├── postgres.2021040400.php │ ├── postgres.2021040500.php │ ├── postgres.2021040900.php │ ├── postgres.2021042200.php │ ├── postgres.2021042800.php │ ├── postgres.2021050700.php │ ├── postgres.2021050701.php │ ├── postgres.2021051000.php │ ├── postgres.2021051300.php │ ├── postgres.2021051400.php │ ├── postgres.2021051900.php │ ├── postgres.2021052400.php │ ├── postgres.2021061500.php │ ├── postgres.2021061600.php │ ├── postgres.2021061601.php │ ├── postgres.2021061700.php │ ├── postgres.2021070100.php │ ├── postgres.2021070500.php │ ├── postgres.2021070600.php │ ├── postgres.2021070700.php │ ├── postgres.2021070900.php │ ├── postgres.2021072000.php │ ├── postgres.2021072100.php │ ├── postgres.2021072101.php │ ├── postgres.2021072102.php │ ├── postgres.2021072103.php │ ├── postgres.2021072300.php │ ├── postgres.2021072600.php │ ├── postgres.2021072900.php │ ├── postgres.2021082800.php │ ├── postgres.2021100500.php │ ├── postgres.2021101900.php │ ├── postgres.2021102700.php │ ├── postgres.2021110800.php │ ├── postgres.2021110900.php │ ├── postgres.2021120100.php │ ├── postgres.2021121000.php │ ├── postgres.2021121500.php │ ├── postgres.2022011300.php │ ├── postgres.2022012000.php │ ├── postgres.2022030100.php │ ├── postgres.2022060900.php │ ├── postgres.2022061300.php │ ├── postgres.2022061301.php │ ├── postgres.2022062400.php │ ├── postgres.2022062401.php │ ├── postgres.2022062402.php │ ├── postgres.2022062700.php │ ├── postgres.2022062701.php │ ├── postgres.2022062702.php │ ├── postgres.2022062703.php │ ├── postgres.2022062704.php │ ├── postgres.2022062705.php │ ├── postgres.2022062706.php │ ├── postgres.2022062800.php │ ├── postgres.2022062801.php │ ├── postgres.2022062802.php │ ├── postgres.2022062803.php │ ├── postgres.2022062804.php │ ├── postgres.2022062805.php │ ├── postgres.2022062806.php │ ├── postgres.2022062807.php │ ├── postgres.2022062808.php │ ├── postgres.2022070400.php │ ├── postgres.2022070401.php │ ├── postgres.2022070700.php │ ├── postgres.2022071800.php │ ├── postgres.2022081700.php │ ├── postgres.2022081800.php │ ├── postgres.2022082600.php │ ├── postgres.2022082601.php │ ├── postgres.2022090800.php │ ├── postgres.2022091200.php │ ├── postgres.2022091500.php │ ├── postgres.2022091900.php │ ├── postgres.2022092000.php │ ├── postgres.2022092200.php │ ├── postgres.2022092201.php │ ├── postgres.2022101300.php │ ├── postgres.2022101700.php │ ├── postgres.2022110200.php │ ├── postgres.2022110400.php │ ├── postgres.2022110900.php │ ├── postgres.2022111600.php │ ├── postgres.2022120700.php │ ├── postgres.2022120701.php │ ├── postgres.2022120702.php │ ├── postgres.2022120800.php │ ├── postgres.2022121500.php │ ├── postgres.2023011100.php │ ├── postgres.2023020900.php │ ├── postgres.2023021000.php │ ├── postgres.2023021500.php │ ├── postgres.2023022100.php │ ├── postgres.2023022101.php │ ├── postgres.2023022400.php │ ├── postgres.2023022401.php │ ├── postgres.2023022402.php │ ├── postgres.2023030300.php │ ├── postgres.2023030800.php │ ├── postgres.2023030900.php │ ├── postgres.2023040500.php │ ├── postgres.2023041400.php │ ├── postgres.2023052300.php │ ├── postgres.2023052500.php │ ├── postgres.2023053000.php │ ├── postgres.2023060700.php │ ├── postgres.2023061400.php │ ├── postgres.2023061500.php │ ├── postgres.2023062600.php │ ├── postgres.2023063000.php │ ├── postgres.2023070600.php │ ├── postgres.2023070601.php │ ├── postgres.2023082500.php │ ├── postgres.2023082800.php │ ├── postgres.2023082801.php │ ├── postgres.2023102500.php │ ├── postgres.2023122900.php │ ├── postgres.2024010400.php │ ├── postgres.2024011700.php │ ├── postgres.2024012600.php │ ├── postgres.2024022100.php │ ├── postgres.2024022800.php │ ├── postgres.2024041100.php │ ├── postgres.2024050700.php │ ├── postgres.2024062100.php │ ├── postgres.2024071600.php │ ├── postgres.2024071800.php │ ├── postgres.2024071900.php │ ├── postgres.2024072200.php │ ├── postgres.2024080900.php │ ├── postgres.2024081200.php │ ├── postgres.2024081300.php │ ├── postgres.2024081400.php │ ├── postgres.2024081401.php │ ├── postgres.2024082200.php │ ├── postgres.2024082300.php │ ├── postgres.2024082301.php │ ├── postgres.2024082302.php │ ├── postgres.2024082600.php │ ├── postgres.2024082700.php │ ├── postgres.2024092600.php │ ├── postgres.2024092700.php │ ├── postgres.2024092701.php │ ├── postgres.2024100400.php │ ├── postgres.2024100401.php │ ├── postgres.2024100800.php │ ├── postgres.2024110500.php │ ├── postgres.2024110800.php │ ├── postgres.2024112100.php │ ├── postgres.2025011600.php │ ├── postgres.2025012300.php │ ├── postgres.2025020400.php │ ├── postgres.2025021300.php │ ├── postgres.2025042400.php │ ├── postgres.2025051600.php │ ├── postgres.2025060500.php │ ├── postgres.2025061800.php │ ├── postgres.2025062000.php │ ├── postgres.2025070300.php │ ├── postgres.2025081300.php │ ├── postgres.2025091200.php │ ├── postgres.2025100200.php │ ├── postgres.2025101700.php │ ├── postgres.2025102200.php │ ├── postgres.2025102400.php │ ├── postgres.2025102900.php │ ├── postgres.2025103100.php │ ├── postgres.2025111300.php │ └── postgres.2025120100.php ├── voip │ ├── Estimate.class.php │ ├── SqlProvider.class.php │ ├── VoipDataProvider.class.php │ └── VoipDbBuffer.class.php └── xajax │ ├── copyright.inc.php │ └── xajax_core │ ├── plugin_layer │ ├── support │ │ ├── xajaxCallableObject.inc.php │ │ ├── xajaxEvent.inc.php │ │ └── xajaxUserFunction.inc.php │ ├── xajaxCallableObjectPlugin.inc.php │ ├── xajaxDefaultIncludePlugin.inc.php │ ├── xajaxEventPlugin.inc.php │ ├── xajaxFunctionPlugin.inc.php │ └── xajaxScriptPlugin.inc.php │ ├── xajax.inc.php │ ├── xajaxArgumentManager.inc.php │ ├── xajaxCompress.inc.php │ ├── xajaxControl.inc.php │ ├── xajaxLanguageManager.inc.php │ ├── xajaxPlugin.inc.php │ ├── xajaxPluginManager.inc.php │ ├── xajaxRequest.inc.php │ ├── xajaxResponse.inc.php │ ├── xajaxResponseManager.inc.php │ ├── xajax_lang_de.inc.php │ └── xajax_lang_nl.inc.php ├── modules ├── .htaccess ├── accountadd.php ├── accountdel.php ├── accountedit.php ├── accountinfo.php ├── accountlist.php ├── accountpasswd.php ├── accountsearch.php ├── aliasadd.php ├── aliasdel.php ├── aliasedit.php ├── aliasinfo.php ├── aliaslist.php ├── aliassearch.php ├── archiveinfo.php ├── archiveview.php ├── attachments.php ├── auth │ ├── actions │ │ ├── engine.php │ │ ├── rights.php │ │ └── save.php │ ├── img │ │ ├── check.gif │ │ ├── check_blend.gif │ │ └── plain.gif │ ├── modinfo.php │ ├── modinit.php │ └── templates │ │ ├── noaccess.html │ │ ├── rightsedit.html │ │ └── rightsinfo.html ├── balanceadd.php ├── balancedel.php ├── balancelist.php ├── balancenew.php ├── calendar.php ├── cashimport.php ├── cashimportcfg.php ├── cashimportparser.php ├── cashpackagedel.php ├── cashregadd.php ├── cashregdel.php ├── cashregedit.php ├── cashreginfo.php ├── cashreglist.php ├── cashreglogadd.php ├── cashreglogdel.php ├── cashreglogedit.php ├── cashregloginfo.php ├── cashreglogview.php ├── cashsourceadd.php ├── cashsourcedel.php ├── cashsourceedit.php ├── cashsourcelist.php ├── choosecustomer.php ├── choosegpscoords.php ├── chooseip.php ├── chooselocation.php ├── choosemac.php ├── choosenetdevfornetnode.php ├── choosenetdevfrommap.php ├── choosenetdevice.php ├── choosenetdevmodel.php ├── choosenode.php ├── choosenodedevice.php ├── chpasswd.php ├── configadd.php ├── configdel.php ├── configedit.php ├── configexport.php ├── configimport.php ├── configinfo.php ├── configlist.php ├── configload.php ├── confirm.php ├── copyrights.php ├── core │ ├── actions │ │ ├── calendar.php │ │ ├── confirm.php │ │ ├── copyrights.php │ │ ├── dberrorhandler.php │ │ ├── end.php │ │ ├── err_loginform.php │ │ ├── init.php │ │ ├── install.php │ │ ├── logout.php │ │ ├── menu.php │ │ └── modinfo-sample.php │ ├── modinfo.php │ └── templates │ │ ├── clearfooter.html │ │ ├── clearheader.html │ │ ├── copyrights.html │ │ ├── dberrorhandler.html │ │ ├── dialog.html │ │ ├── dynpopup.html │ │ ├── err_actionnotfound.html │ │ ├── err_actionnotpublic.html │ │ ├── err_loginform.html │ │ ├── err_modulenotfound.html │ │ ├── err_modulenotpublic.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── menu.html │ │ └── notfound.html ├── currentdivision.php ├── customer.inc.php ├── customeradd.php ├── customeraddresses.php ├── customerassignmentadd.php ├── customerassignmentdel.php ├── customerassignmentedit.php ├── customerassignmenthelper.php ├── customerassignmentinfo.php ├── customerbalance.php ├── customerbalanceok.php ├── customerbalancetransfer.php ├── customercall.php ├── customercalllist.php ├── customercutoffstop.php ├── customerdel.php ├── customeredit.php ├── customerextidhelper.php ├── customergroup.php ├── customergroupadd.php ├── customergroupdel.php ├── customergroupedit.php ├── customergroupinfo.php ├── customergrouplist.php ├── customergroupmove.php ├── customerinfo.php ├── customerinfoshort.php ├── customerlist.php ├── customername.php ├── customernote.php ├── customerprint.php ├── customersearch.php ├── customerselect.php ├── customerssncheck.php ├── customertransferform.php ├── customerwarn.php ├── daemonconfigadd.php ├── daemonconfigdel.php ├── daemonconfigedit.php ├── daemoninstanceadd.php ├── daemoninstancedel.php ├── daemoninstanceedit.php ├── daemoninstancelist.php ├── daemoninstanceview.php ├── dbdel.php ├── dblist.php ├── dbnew.php ├── dbrecover.php ├── dbview.php ├── divisionadd.php ├── divisionclone.php ├── divisiondel.php ├── divisionedit.php ├── divisionlist.php ├── dns.php ├── document.inc.php ├── documentadd.php ├── documentdel.php ├── documentedit.php ├── documentgen.php ├── documentlist.php ├── documentscanadd.php ├── documentsend.php ├── documenttypeedit.php ├── documenttypes.php ├── documentview.php ├── domainadd.php ├── domaindel.php ├── domainedit.php ├── domaininfo.php ├── domainlist.php ├── domainsearch.php ├── eventadd.php ├── eventdel.php ├── eventedit.php ├── eventinfo.php ├── eventinfoshort.php ├── eventlist.php ├── eventnote.php ├── eventprint.php ├── eventschedule.php ├── eventsearch.php ├── eventxajax.inc.php ├── ewxchadd.php ├── ewxchdel.php ├── ewxchedit.php ├── ewxchinfo.php ├── ewxchlist.php ├── ewxdevlist.php ├── ewxnodelist.php ├── export.php ├── exportcfg.php ├── genfake.php ├── geocodexajax.inc.php ├── gusapi.php ├── hostadd.php ├── hostdel.php ├── hostedit.php ├── hostlist.php ├── indicators.php ├── invoice.php ├── invoiceajax.inc.php ├── invoicearchive.php ├── invoicecancel.php ├── invoicedel.php ├── invoiceedit.php ├── invoiceinfo.php ├── invoicelist.php ├── invoicenew.php ├── invoicenote.php ├── invoicenoteedit.php ├── invoicepaid.php ├── invoicereport.php ├── invoicesend.php ├── invoiceunarchive.php ├── invprojectadd.php ├── invprojectdel.php ├── invprojectedit.php ├── invprojectlist.php ├── logout.php ├── mailing │ ├── actions │ │ └── mailing.php │ ├── img │ │ ├── attach.gif │ │ ├── email.gif │ │ ├── group.gif │ │ ├── mail.gif │ │ └── users.gif │ ├── modinfo.php │ └── templates │ │ ├── mailing.html │ │ ├── mailingsend-footer.html │ │ └── mailingsend.html ├── managementurls.inc.php ├── map.inc.php ├── maplink.php ├── messageadd.php ├── messagecancel.php ├── messagedel.php ├── messageinfo.php ├── messagelist.php ├── messagetemplatedel.php ├── messagetemplatelist.php ├── modinfo-sample.php ├── netadd.php ├── netcmp.php ├── netdel.php ├── netdevadd.php ├── netdevdel.php ├── netdevedit.php ├── netdevinfo.php ├── netdevlist.php ├── netdevmac.php ├── netdevmap.php ├── netdevmaprefresh.php ├── netdevmodels.php ├── netdevprint.php ├── netdevsearch.php ├── netdevxajax.inc.php ├── netedit.php ├── netinfo.php ├── netlinkpoints.php ├── netlinkproperties.php ├── netlist.php ├── netnodeadd.php ├── netnodeadddev.php ├── netnodedel.php ├── netnodedeldev.php ├── netnodeedit.php ├── netnodeinfo.php ├── netnodelist.php ├── netranges.php ├── netremap.php ├── netsearch.php ├── netusage.php ├── nodeadd.php ├── nodedel.php ├── nodeedit.php ├── nodegroup.php ├── nodegroupadd.php ├── nodegroupdel.php ├── nodegroupedit.php ├── nodegroupinfo.php ├── nodegrouplist.php ├── nodegroupmove.php ├── nodeinfo.php ├── nodelist.php ├── nodelistshort.php ├── nodeprint.php ├── nodescan.php ├── nodesearch.php ├── nodeservicelist.php ├── nodesession.php ├── nodesessionlist.php ├── nodeset.php ├── nodewarn.php ├── nodexajax.inc.php ├── note.php ├── noteadd.php ├── notearchive.php ├── notecancel.php ├── notedel.php ├── noteedit.php ├── notelist.php ├── notepaid.php ├── noteunarchive.php ├── number.php ├── numberplanadd.php ├── numberplandel.php ├── numberplanedit.php ├── numberplanhelper.php ├── numberplanlist.php ├── paymentadd.php ├── paymentdel.php ├── paymentedit.php ├── paymentinfo.php ├── paymentlist.php ├── persistentsetting.php ├── ping.php ├── pluginlist.php ├── print.php ├── promotionadd.php ├── promotionattachmentview.php ├── promotionclone.php ├── promotiondel.php ├── promotionedit.php ├── promotioninfo.php ├── promotionlist.php ├── promotionschemaadd.php ├── promotionschemaclone.php ├── promotionschemadel.php ├── promotionschemaedit.php ├── promotionschemainfo.php ├── promotionschemaset.php ├── promotionset.php ├── quicksearch.php ├── receipt.php ├── receiptadd.php ├── receiptadv.php ├── receiptdel.php ├── receiptedit.php ├── receiptlist.php ├── recordadd.php ├── recorddel.php ├── recordedit.php ├── recordlist.php ├── register.php ├── reload.php ├── routednetworks.php ├── rtcategoryadd.php ├── rtcategorydel.php ├── rtcategoryedit.php ├── rtcategoryinfo.php ├── rtcategorylist.php ├── rtmessageadd.php ├── rtmessagedel.php ├── rtmessageview.php ├── rtmessagexajax.inc.php ├── rtnoteadd.php ├── rtnotexajax.inc.php ├── rtprint.php ├── rtqueueadd.php ├── rtqueuedel.php ├── rtqueueedit.php ├── rtqueueinfo.php ├── rtqueuelist.php ├── rtqueueview.php ├── rtremove.php ├── rtrestore.php ├── rtsearch.php ├── rtticketadd.php ├── rtticketdel.php ├── rtticketedit.php ├── rtticketinfo.php ├── rtticketprint.php ├── rtticketview.php ├── rtticketxajax.inc.php ├── stateadd.php ├── statedel.php ├── stateedit.php ├── statelist.php ├── tariffadd.php ├── tariffdel.php ├── tariffedit.php ├── tariffinfo.php ├── tarifflist.php ├── tariffmove.php ├── tariffpricevariant.php ├── tarifftag.php ├── tarifftagadd.php ├── tarifftagdel.php ├── tarifftagedit.php ├── tarifftaginfo.php ├── tarifftaglist.php ├── tarifftagmove.php ├── taxrateadd.php ├── taxratedel.php ├── taxrateedit.php ├── taxratelist.php ├── template.php ├── traffic.php ├── traffic │ ├── actions │ │ ├── compacting.php │ │ ├── nodetraffic.php │ │ ├── print.php │ │ ├── printtraffic.php │ │ ├── traffic-day.php │ │ ├── traffic-hour.php │ │ ├── traffic-month.php │ │ ├── traffic-year.php │ │ ├── traffic.php │ │ └── trafficdbcompact.php │ ├── img │ │ ├── bluepx.gif │ │ ├── calendar.gif │ │ ├── customer.gif │ │ ├── network.gif │ │ ├── print.gif │ │ ├── redpx.gif │ │ └── traffic.gif │ ├── modinfo.php │ ├── modinit.php │ └── templates │ │ ├── nodetraffic.html │ │ ├── print.html │ │ ├── printtraffic.html │ │ ├── traffic.html │ │ └── trafficdbcompact.html ├── trafficdbcompact.php ├── trafficgraph.php ├── trafficprint.php ├── transferforms.php ├── twofactorauthedit.php ├── twofactorauthinfo.php ├── ukeincome.php ├── ukepit.php ├── ukesidusis.php ├── ukesiis.php ├── useraccess.php ├── useradd.php ├── usercopypermissions.inc.php ├── userdel.php ├── useredit.php ├── usergroup.php ├── usergroupadd.php ├── usergroupdel.php ├── usergroupedit.php ├── usergroupinfo.php ├── usergrouplist.php ├── usergroupmove.php ├── userinfo.php ├── userlist.php ├── userpanel.php ├── userpasswd.php ├── users │ ├── actions │ │ ├── add.php │ │ ├── delete.php │ │ ├── edit.php │ │ ├── info.php │ │ ├── list.php │ │ └── passwd.php │ ├── img │ │ ├── ip.gif │ │ ├── keys.gif │ │ ├── mail.gif │ │ ├── pass.gif │ │ ├── time.gif │ │ └── users.gif │ ├── modinfo.php │ └── templates │ │ ├── add.html │ │ ├── edit.html │ │ ├── info.html │ │ ├── list.html │ │ └── passwd.html ├── userswitch.php ├── vlanlist.php ├── voipaccountadd.php ├── voipaccountbillinginfo.php ├── voipaccountbillinglist.php ├── voipaccountdel.php ├── voipaccountedit.php ├── voipaccountinfo.php ├── voipaccountlist.php ├── voipaccountsearch.php ├── voipaccountset.php ├── voipcallrecording.php ├── voippoolnumberlist.php ├── voippricelist.php ├── voipprint.php ├── voiptariffrules.php ├── welcome.php └── zipcode.php ├── phpcs2.xml ├── phpcs3.xml ├── phpunit.xml ├── plugins ├── .htaccess └── PluginExample │ ├── PluginExample.php │ ├── handlers │ ├── UseraddHandler.php │ └── WelcomeHandler.php │ ├── lib │ └── locale │ │ └── pl │ │ └── strings.php │ └── templates │ └── welcome │ └── welcome.html ├── sample ├── crontab-entry ├── lms-full.ini ├── lms-main.apache.conf ├── lms-mariadb-centos7-install.sh ├── lms-mgc-netx-sample.ini ├── lms-mgc.ini ├── lms-postgresql-centos7-install.sh ├── lms-postgresql-debian10-install.sh ├── lms.apache.conf ├── lms.apache24.conf ├── lms.ini ├── lms.nginx.conf ├── mailtemplate.txt ├── mailtemplate_en.txt ├── radius-mysql.conf ├── radius-pgsql.conf ├── rc.lmsd ├── rc.reminder_1st ├── smstemplate.txt ├── tekst_1.txt ├── test.txt └── traffic_ipt.pl ├── storage ├── .htaccess ├── customercalls │ └── .placeholder ├── messagetemplates │ └── .placeholder ├── promotions │ └── .placeholder ├── promotionschemas │ └── .placeholder ├── rt │ └── .placeholder └── voipcalls │ └── .placeholder ├── templates └── default │ ├── account │ ├── accountadd.html │ ├── accountedit.html │ ├── accountinfo.html │ ├── accountlist.html │ ├── accountpasswd.html │ └── accountsearch.html │ ├── alias │ ├── aliasadd.html │ ├── aliasedit.html │ ├── aliasinfo.html │ └── aliaslist.html │ ├── archive │ ├── archiveinfo.html │ ├── archiveinfobox.html │ └── archiveview.html │ ├── attachments.html │ ├── balance │ ├── balancelist.html │ └── balancenew.html │ ├── cash │ ├── cashimport.html │ ├── cashregadd.html │ ├── cashregedit.html │ ├── cashreginfo.html │ ├── cashreglist.html │ ├── cashreglogadd.html │ ├── cashreglogedit.html │ ├── cashregloginfo.html │ ├── cashreglogview.html │ ├── cashsourceadd.html │ ├── cashsourceedit.html │ └── cashsourcelist.html │ ├── choose │ ├── choosecustomer.html │ ├── choosegpscoords.html │ ├── chooseip.html │ ├── chooselocation.html │ ├── choosemac.html │ ├── choosenetdevfornetnode.html │ ├── choosenetdevfrommap.html │ ├── choosenetdevice.html │ ├── choosenetdevmodel.html │ ├── choosenode.html │ └── choosenodedevice.html │ ├── clearfooter.html │ ├── clearheader.html │ ├── config │ ├── configadd.html │ ├── configdivisions.html │ ├── configdivisionusers.html │ ├── configedit.html │ ├── configimport.html │ ├── configlist.html │ └── configusers.html │ ├── copyrights.html │ ├── customer │ ├── customeractions.html │ ├── customeradd.html │ ├── customeraddresses.html │ ├── customerassignmenthelper.html │ ├── customerassignmentinfoshort.html │ ├── customerassignments.html │ ├── customerassignmentsedit.html │ ├── customerbalance.html │ ├── customerbalancebox.html │ ├── customercallbox.html │ ├── customercalllist.html │ ├── customercompanyselectiondialog.html │ ├── customerconsents.html │ ├── customercontacts.html │ ├── customerdevices.html │ ├── customerdocuments.html │ ├── customeredit.html │ ├── customereditbox.html │ ├── customerevents.html │ ├── customerextidlist.html │ ├── customerextids.html │ ├── customergroupadd.html │ ├── customergroupassignments.html │ ├── customergroupedit.html │ ├── customergroupinfo.html │ ├── customergrouplist.html │ ├── customergroups.html │ ├── customerinfo.html │ ├── customerinfobox.html │ ├── customerinfoshort.html │ ├── customerlist.html │ ├── customermessages.html │ ├── customernetnodes.html │ ├── customernetworksbox.html │ ├── customernodesbox.html │ ├── customernotes.html │ ├── customersearch.html │ ├── customersearchresults.html │ ├── customertickets.html │ ├── customervoipaccountsbox.html │ └── customerwarnings.html │ ├── daemon │ ├── daemonconfigadd.html │ ├── daemonconfigedit.html │ ├── daemoninstanceadd.html │ ├── daemoninstanceedit.html │ ├── daemoninstancelist.html │ └── daemoninstanceview.html │ ├── dberrors.html │ ├── dblist.html │ ├── dialog.html │ ├── division │ ├── divisionadd.html │ ├── divisionedit.html │ └── divisionlist.html │ ├── document │ ├── documentadd.html │ ├── documentconsents.html │ ├── documentedit.html │ ├── documentgen.html │ ├── documentlist.html │ ├── documentpromotions.html │ ├── documentreference.html │ ├── documentscanadd.html │ ├── documenttemplateoptions.html │ ├── documenttypeedit.html │ ├── documenttypes.html │ └── template.html │ ├── domain │ ├── domainadd.html │ ├── domainedit.html │ ├── domaininfo.html │ └── domainlist.html │ ├── dynpopup.html │ ├── event │ ├── eventinfo.html │ ├── eventinfoshort.html │ ├── eventlist.html │ ├── eventlistbox.html │ ├── eventlistbox_overdue.html │ ├── eventlistboxrow.html │ ├── eventlistfilter.html │ ├── eventlistheader.html │ ├── eventmodify.html │ ├── eventnote.html │ ├── eventprint.html │ ├── eventschedule.html │ ├── eventschedulebox.html │ ├── eventschedulefilter.html │ ├── eventsearch.html │ └── eventsearchresults.html │ ├── ewxch │ ├── ewxchadd.html │ ├── ewxchedit.html │ ├── ewxchinfo.html │ └── ewxchlist.html │ ├── export.html │ ├── footer.html │ ├── google-maps.html │ ├── header.html │ ├── host │ ├── hostadd.html │ ├── hostedit.html │ └── hostlist.html │ ├── indicators.html │ ├── invoice │ ├── invoice.html │ ├── invoicecontents.html │ ├── invoicecustomer.html │ ├── invoiceedit.html │ ├── invoiceheader.html │ ├── invoiceinfoshort.html │ ├── invoicelist.html │ ├── invoicenew.html │ ├── invoicenotemodify.html │ ├── invoicenotereasontemplates.html │ ├── invoicereport-ext.html │ └── invoicereport.html │ ├── invproject │ ├── invprojectadd.html │ ├── invprojectedit.html │ └── invprojectlist.html │ ├── jquery.html │ ├── language.html │ ├── layout-without-footer.html │ ├── layout.html │ ├── list.html │ ├── login.html │ ├── managementurl │ ├── managementurllist.html │ └── managementurls.html │ ├── map.js │ ├── menu-panel.html │ ├── message │ ├── messageadd.html │ ├── messageinfo.html │ ├── messagelist.html │ ├── messagesend.html │ ├── messagetemplatedialog.html │ └── messagetemplatelist.html │ ├── modal-dialogs.html │ ├── net │ ├── netadd.html │ ├── netinfo.html │ ├── netlist.html │ ├── netranges.html │ ├── netremap.html │ ├── netsearch.html │ ├── netusage.html │ └── network_container.html │ ├── netdev │ ├── netdevadd.html │ ├── netdevconnbox.html │ ├── netdevedit.html │ ├── netdevevents.html │ ├── netdevinfo.html │ ├── netdevinfobox.html │ ├── netdevipadd.html │ ├── netdevipaddbox.html │ ├── netdevipbox.html │ ├── netdevipedit.html │ ├── netdevipeditbox.html │ ├── netdevipinfo.html │ ├── netdevipinfobox.html │ ├── netdevlist.html │ ├── netdevlistshort.html │ ├── netdevmaclist.html │ ├── netdevmacs.html │ ├── netdevmap.html │ ├── netdevmodels.html │ ├── netdevmodify.html │ ├── netdevnodes.html │ ├── netdevsearch.html │ ├── netdevsearchresults.html │ ├── netdevtickets.html │ ├── netlinkproperties.html │ ├── radiosectorlist.html │ └── radiosectors.html │ ├── netnode │ ├── netnodedevices.html │ ├── netnodeevents.html │ ├── netnodeinfo.html │ ├── netnodeinfobox.html │ ├── netnodelist.html │ ├── netnodemodify.html │ └── netnodetickets.html │ ├── noaccess.html │ ├── node │ ├── nodeadd.html │ ├── nodeaddbox.html │ ├── nodeedit.html │ ├── nodeeditbox.html │ ├── nodegroupadd.html │ ├── nodegroupassignments.html │ ├── nodegroupedit.html │ ├── nodegroupinfo.html │ ├── nodegrouplist.html │ ├── nodegrouplistshort.html │ ├── nodegroups.html │ ├── nodeinfo.html │ ├── nodeinfobox.html │ ├── nodelist.html │ ├── nodelistshort.html │ ├── nodelocklist.html │ ├── nodelocks.html │ ├── nodescan.html │ ├── nodescanbox.html │ ├── nodesearch.html │ ├── nodesearchresults.html │ ├── nodesessionlist.html │ ├── nodesessions.html │ ├── nodestats.html │ ├── nodewarnings.html │ └── routednetworks.html │ ├── note │ ├── note.html │ ├── noteadd.html │ ├── noteedit.html │ ├── noteheader.html │ └── notelist.html │ ├── notfound.html │ ├── numberplan │ ├── numberplanadd.html │ ├── numberplanedit.html │ └── numberplanlist.html │ ├── openlayers.html │ ├── pagination.html │ ├── payment │ ├── paymentadd.html │ ├── paymentedit.html │ ├── paymentinfo.html │ └── paymentlist.html │ ├── ping.html │ ├── pluginlist.html │ ├── popup-menu.html │ ├── print │ ├── printbalancelist-csv.html │ ├── printbalancelist.html │ ├── printcustomerbalance.html │ ├── printcustomerlist-csv.html │ ├── printcustomerlist-sendingbook.html │ ├── printcustomerlist.html │ ├── printcustomertraffic.html │ ├── printimportlist.html │ ├── printincomereport.html │ ├── printindebtnodelist-csv.html │ ├── printindebtnodelist.html │ ├── printindex.html │ ├── printliabilityreport.html │ ├── printnodelist-csv.html │ ├── printnodelist.html │ ├── printreceiptlist-csv.html │ ├── printreceiptlist-ext.html │ ├── printreceiptlist.html │ ├── printukeincome.html │ ├── printvoipaccountlist.html │ └── printvoipsummary.html │ ├── promotion │ ├── promotionadd.html │ ├── promotionedit.html │ ├── promotioninfo.html │ ├── promotioninfobox.html │ ├── promotionlist.html │ ├── promotionschemaadd.html │ ├── promotionschemadata.html │ ├── promotionschemaedit.html │ ├── promotionschemainfo.html │ ├── promotionschemainfobox.html │ ├── promotionschemas.html │ └── promotiontariffs.html │ ├── quicksearch-indicators-panel.html │ ├── quicksearchcontents.html │ ├── receipt │ ├── receipt.html │ ├── receiptadd.html │ ├── receiptadv.html │ ├── receiptcashregistries.html │ ├── receiptedit.html │ ├── receiptheader.html │ └── receiptlist.html │ ├── record │ ├── recordedit.html │ └── recordlist.html │ ├── register.html │ ├── reload.html │ ├── rt │ ├── rtcategoryadd.html │ ├── rtcategoryedit.html │ ├── rtcategoryinfo.html │ ├── rtcategorylist.html │ ├── rtcategoryselection.html │ ├── rtfilter.html │ ├── rtheader.html │ ├── rtmessageadd.html │ ├── rtmessagetemplates.html │ ├── rtmessageview.html │ ├── rtnetdevs.html │ ├── rtnoteadd.html │ ├── rtprintindex.html │ ├── rtprintstats.html │ ├── rtprinttickets-ext.html │ ├── rtprinttickets.html │ ├── rtqueueinfo.html │ ├── rtqueuelist.html │ ├── rtqueuemodify.html │ ├── rtqueueview.html │ ├── rtqueueviewbox.html │ ├── rtqueueviewboxrow.html │ ├── rtsearch.html │ ├── rtsearchresults.html │ ├── rtticketadd.html │ ├── rtticketchildren.html │ ├── rtticketedit.html │ ├── rtticketeventlist.html │ ├── rtticketinfobox.html │ ├── rtticketinfoshort.html │ ├── rtticketmessagesbox.html │ ├── rtticketmodify.html │ ├── rtticketparentinfo.html │ ├── rtticketprint.html │ ├── rtticketrelatedlist.html │ ├── rtticketshared.html │ ├── rtticketview.html │ └── rtverifiers.html │ ├── scroller.html │ ├── smspassword.html │ ├── spinner.html │ ├── state │ ├── stateadd.html │ ├── stateedit.html │ └── statelist.html │ ├── tariff │ ├── tariffadd.html │ ├── tariffedit.html │ ├── tariffinfo.html │ ├── tarifflist.html │ ├── tariffpricevariantlist.html │ ├── tariffpricevariants.html │ ├── tarifftagadd.html │ ├── tarifftagassignments.html │ ├── tarifftagedit.html │ ├── tarifftaginfo.html │ └── tarifftaglist.html │ ├── taxrate │ ├── taxrateadd.html │ ├── taxrateedit.html │ └── taxratelist.html │ ├── toolbar-panel.html │ ├── traffic │ ├── traffic.html │ ├── trafficdbcompact.html │ └── trafficgraph.html │ ├── transactionlist.html │ ├── transactions.html │ ├── twofactorauth │ ├── twofactorauthcode.html │ ├── twofactorauthedit.html │ ├── twofactorauthinfo.html │ ├── twofactorauthinfobox.html │ └── twofactorauthtrusteddevices.html │ ├── user │ ├── useradd.html │ ├── usercopypermissions.html │ ├── useredit.html │ ├── usereditbox.html │ ├── usergroupadd.html │ ├── usergroupassignments.html │ ├── usergroupedit.html │ ├── usergroupinfo.html │ ├── usergrouplist.html │ ├── userinfo.html │ ├── userinfobox.html │ ├── userlist.html │ └── userpasswd.html │ ├── vlan │ ├── vlanlist.html │ └── vlanmodify-dialog.html │ ├── voipaccount │ ├── voipaccountadd.html │ ├── voipaccountaddbox.html │ ├── voipaccountaddboxdialog.html │ ├── voipaccountbillinginfo.html │ ├── voipaccountbillinglist.html │ ├── voipaccountedit.html │ ├── voipaccounteditbox.html │ ├── voipaccountinfo.html │ ├── voipaccountinfobox.html │ ├── voipaccountlist.html │ ├── voipaccounts.html │ ├── voipaccountsearch.html │ ├── voipaccountsearchresults.html │ ├── voippoolnumberadddialog.html │ ├── voippoolnumbereditdialog.html │ ├── voippoolnumberlist.html │ ├── voippoolnumberremovedialog.html │ ├── voippricelist.html │ ├── voippricelisttablerow.html │ ├── voiptariffrules.html │ └── voiptarifftablerow.html │ └── welcome │ ├── welcome.html │ ├── welcome_links.html │ ├── welcome_registration.html │ ├── welcome_summaries.html │ ├── welcome_sysinfo_about_lms.html │ ├── welcome_sysinfo_about_system.html │ ├── welcome_sysinfo_customers.html │ └── welcome_sysinfo_rtstats.html ├── templates_c └── .htaccess ├── tests ├── bootstrap.php └── lib │ ├── LMSConfig │ ├── ConfigContainerTest.php │ ├── ConfigSectionTest.php │ └── ConfigVariableTest.php │ ├── LMSDBTest.php │ ├── LMSPaginationFactoryTest.php │ ├── LMSPaginationLongTest.php │ ├── LMSPaginationShortTest.php │ └── LMSPaginationTest.php └── userpanel ├── cache ├── css ├── img ├── index.php ├── js ├── lib ├── .htaccess ├── LMS.menu.php ├── LMS.setup.php ├── Session.class.php ├── ULMS.class.php ├── Userpanel.class.php ├── checkdirs.php ├── locale │ ├── cs_CZ │ │ └── strings.php │ ├── lt_LT │ │ └── strings.php │ ├── pl_PL │ │ └── strings.php │ └── sk_SK │ │ └── strings.php ├── setup_functions.php └── smarty_addons.php ├── modules ├── documents │ ├── UserpanelDocumentHandler.php │ ├── configuration.php │ ├── docview.php │ ├── functions.php │ ├── locale │ │ └── pl_PL │ │ │ └── strings.php │ ├── style │ │ ├── bclean │ │ │ └── templates │ │ │ │ ├── documents-callback-handler.html │ │ │ │ └── documents.html │ │ └── default │ │ │ └── view.gif │ └── templates │ │ ├── documents-callback-handler.html │ │ ├── documents.html │ │ └── setup.html ├── finances │ ├── configuration.php │ ├── functions.php │ ├── invoice.php │ ├── locale │ │ ├── lt_LT │ │ │ └── strings.php │ │ ├── pl_PL │ │ │ └── strings.php │ │ └── sk_SK │ │ │ └── strings.php │ ├── main.php │ ├── style │ │ ├── bclean │ │ │ └── templates │ │ │ │ ├── balance.html │ │ │ │ ├── finances.html │ │ │ │ ├── setup.html │ │ │ │ ├── userassignments.html │ │ │ │ └── userbalancebox.html │ │ └── default │ │ │ └── print.gif │ ├── templates │ │ ├── balance.html │ │ ├── finances.html │ │ ├── setup.html │ │ ├── userassignments.html │ │ └── userbalancebox.html │ └── transferform.php ├── help │ ├── configuration.php │ ├── functions.php │ ├── locale │ │ ├── lt_LT │ │ │ └── strings.php │ │ ├── pl_PL │ │ │ └── strings.php │ │ └── sk_SK │ │ │ └── strings.php │ ├── style │ │ └── bclean │ │ │ └── templates │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ ├── help.html │ │ │ ├── setup.html │ │ │ └── tree.html │ └── templates │ │ ├── add.html │ │ ├── edit.html │ │ ├── help.html │ │ ├── setup.html │ │ └── tree.html ├── helpdesk │ ├── configuration.php │ ├── functions.php │ ├── locale │ │ ├── lt_LT │ │ │ └── strings.php │ │ ├── pl_PL │ │ │ └── strings.php │ │ └── sk_SK │ │ │ └── strings.php │ ├── style │ │ ├── bclean │ │ │ └── templates │ │ │ │ ├── helpdesk.html │ │ │ │ ├── helpdesklist.html │ │ │ │ ├── helpdesknew.html │ │ │ │ ├── helpdeskreply.html │ │ │ │ ├── helpdeskview.html │ │ │ │ └── setup.html │ │ └── default │ │ │ ├── attach.gif │ │ │ ├── help.gif │ │ │ ├── helpdesk.gif │ │ │ ├── save.gif │ │ │ └── ticket.gif │ └── templates │ │ ├── helpdesk.html │ │ ├── helpdesklist.html │ │ ├── helpdesknew.html │ │ ├── helpdeskreply.html │ │ ├── helpdeskview.html │ │ └── setup.html ├── info │ ├── configuration.php │ ├── functions.php │ ├── locale │ │ ├── lt_LT │ │ │ └── strings.php │ │ ├── pl_PL │ │ │ └── strings.php │ │ └── sk_SK │ │ │ └── strings.php │ ├── style │ │ ├── bclean │ │ │ └── templates │ │ │ │ ├── consentbox.html │ │ │ │ ├── info.html │ │ │ │ ├── updatepin.html │ │ │ │ ├── updateuser.html │ │ │ │ ├── updateuserinfobox.html │ │ │ │ ├── userinfobox.html │ │ │ │ ├── userloginbox.html │ │ │ │ └── usernodesbox.html │ │ └── default │ │ │ ├── access.gif │ │ │ ├── address.gif │ │ │ ├── cash.gif │ │ │ ├── edit.gif │ │ │ ├── gg.gif │ │ │ ├── mail.gif │ │ │ ├── noaccess.gif │ │ │ ├── person.gif │ │ │ ├── phone.gif │ │ │ ├── skype.gif │ │ │ ├── view.gif │ │ │ └── yahoo.gif │ └── templates │ │ ├── consentbox.html │ │ ├── info.html │ │ ├── setup.html │ │ ├── setup_changes.html │ │ ├── updatepin.html │ │ ├── updatepinbox.html │ │ ├── updateuser.html │ │ ├── updateuserinfobox.html │ │ ├── userinfobox.html │ │ └── usernodesbox.html ├── logout │ ├── configuration.php │ ├── functions.php │ ├── locale │ │ ├── lt_LT │ │ │ └── strings.php │ │ ├── pl_PL │ │ │ └── strings.php │ │ └── sk_SK │ │ │ └── strings.php │ ├── style │ │ └── bclean │ │ │ └── templates │ │ │ └── setup.html │ └── templates │ │ └── setup.html ├── modules │ ├── configuration.php │ ├── functions.php │ ├── locale │ │ ├── lt_LT │ │ │ └── strings.php │ │ ├── pl_PL │ │ │ └── strings.php │ │ └── sk_SK │ │ │ └── strings.php │ ├── style │ │ └── bclean │ │ │ └── templates │ │ │ └── modules.html │ └── templates │ │ └── modules.html ├── notices │ ├── UserpanelNoticeHandler.php │ ├── configuration.php │ ├── functions.php │ ├── locale │ │ ├── lt_LT │ │ │ └── strings.php │ │ ├── pl_PL │ │ │ └── strings.php │ │ └── sk_SK │ │ │ └── strings.php │ ├── style │ │ ├── bclean │ │ │ └── templates │ │ │ │ ├── notices-callback-handler.html │ │ │ │ └── notices.html │ │ └── default │ │ │ └── save.gif │ └── templates │ │ ├── notices-callback-handler.html │ │ └── notices.html ├── stats │ ├── configuration.php │ ├── functions.php │ ├── locale │ │ ├── lt_LT │ │ │ └── strings.php │ │ ├── pl_PL │ │ │ └── strings.php │ │ └── sk_SK │ │ │ └── strings.php │ ├── style │ │ ├── bclean │ │ │ └── templates │ │ │ │ ├── setup.html │ │ │ │ └── stats.html │ │ └── default │ │ │ ├── bluepx.gif │ │ │ └── redpx.gif │ └── templates │ │ ├── setup.html │ │ └── stats.html └── voip │ ├── configuration.php │ ├── functions.php │ ├── locale │ └── pl_PL │ │ └── strings.php │ ├── minibilling.php │ ├── style │ └── bclean │ │ └── templates │ │ └── billing.html │ └── templates │ ├── billing.html │ └── minibilling.html ├── style ├── bclean │ ├── .gitignore │ ├── README.MD │ ├── body.html │ ├── box.html │ ├── common.js │ ├── composer.json │ ├── fontawesome │ ├── less │ │ └── userpanel-variables.less │ ├── style.css │ ├── style.less │ └── templates │ │ ├── dberrors.html │ │ ├── error.html │ │ ├── footer.html │ │ ├── header.html │ │ └── login.html ├── default │ ├── avatar.gif │ ├── avatar.js │ ├── body.html │ ├── box.html │ ├── common.js │ ├── fontawesome │ ├── grad.gif │ ├── keyboard.jpg │ ├── less │ │ └── userpanel-variables.less │ ├── logo.jpg │ ├── note1.gif │ ├── note2.gif │ ├── note3.gif │ ├── overlib.js │ ├── style.css │ ├── style.less │ ├── tabs_begin_notsel.gif │ ├── tabs_begin_sel.gif │ ├── tabs_begin_tab_sel.gif │ ├── tabs_bg.gif │ ├── tabs_end_notsel.gif │ ├── tabs_end_sel.gif │ ├── tabs_end_tab_sel.gif │ ├── tabs_spacer_notsel.gif │ ├── tabs_tab_notsel.gif │ ├── tabs_tab_sel.gif │ └── warning.png └── old │ ├── body.html │ ├── box.html │ ├── box_blue.gif │ ├── box_blue_lewo.gif │ ├── box_blue_srodek.gif │ ├── button_a.gif │ ├── button_a_l.gif │ ├── button_a_r.gif │ ├── button_b.gif │ ├── button_b_l.gif │ ├── button_b_r.gif │ ├── fill.gif │ ├── fontawesome │ ├── keyboard.jpg │ ├── less │ └── userpanel-variables.less │ ├── logo.jpg │ ├── style.css │ └── style.less ├── templates ├── dberrors.html ├── error.html ├── footer.html ├── header.html ├── jquery.html ├── login.html ├── pagination.html ├── setup.html ├── setup_error.html └── setup_rights.html └── templates_c └── .htaccess /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/.htaccess -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/README.md -------------------------------------------------------------------------------- /backups/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /bin/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /bin/lms-arpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-arpd -------------------------------------------------------------------------------- /bin/lms-arping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-arping -------------------------------------------------------------------------------- /bin/lms-cashimport-ftp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-cashimport-ftp.sh -------------------------------------------------------------------------------- /bin/lms-cashimport-mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-cashimport-mail.php -------------------------------------------------------------------------------- /bin/lms-cashimport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-cashimport.php -------------------------------------------------------------------------------- /bin/lms-cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-cleanup.php -------------------------------------------------------------------------------- /bin/lms-customercalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-customercalls.php -------------------------------------------------------------------------------- /bin/lms-cutoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-cutoff -------------------------------------------------------------------------------- /bin/lms-dsn-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-dsn-handler.php -------------------------------------------------------------------------------- /bin/lms-etherdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-etherdesc -------------------------------------------------------------------------------- /bin/lms-fping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-fping -------------------------------------------------------------------------------- /bin/lms-gps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-gps.php -------------------------------------------------------------------------------- /bin/lms-gus-regon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-gus-regon.php -------------------------------------------------------------------------------- /bin/lms-html2pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-html2pdf.js -------------------------------------------------------------------------------- /bin/lms-ipfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-ipfw -------------------------------------------------------------------------------- /bin/lms-makearp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makearp -------------------------------------------------------------------------------- /bin/lms-makedhcpconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makedhcpconf.php -------------------------------------------------------------------------------- /bin/lms-makehosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makehosts -------------------------------------------------------------------------------- /bin/lms-makeipchains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makeipchains -------------------------------------------------------------------------------- /bin/lms-makeiptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makeiptables -------------------------------------------------------------------------------- /bin/lms-makemacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makemacs -------------------------------------------------------------------------------- /bin/lms-makemessages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makemessages -------------------------------------------------------------------------------- /bin/lms-makeoidentconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makeoidentconf -------------------------------------------------------------------------------- /bin/lms-makeon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makeon -------------------------------------------------------------------------------- /bin/lms-makeopenbsdpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makeopenbsdpf -------------------------------------------------------------------------------- /bin/lms-maketcnew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-maketcnew.php -------------------------------------------------------------------------------- /bin/lms-makewarnings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-makewarnings -------------------------------------------------------------------------------- /bin/lms-mgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-mgc -------------------------------------------------------------------------------- /bin/lms-notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-notify.php -------------------------------------------------------------------------------- /bin/lms-payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-payments.php -------------------------------------------------------------------------------- /bin/lms-pna.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-pna.php -------------------------------------------------------------------------------- /bin/lms-reminder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-reminder -------------------------------------------------------------------------------- /bin/lms-rtparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-rtparser.php -------------------------------------------------------------------------------- /bin/lms-sendinvoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-sendinvoices.php -------------------------------------------------------------------------------- /bin/lms-sidusis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-sidusis.php -------------------------------------------------------------------------------- /bin/lms-sms2rt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-sms2rt.php -------------------------------------------------------------------------------- /bin/lms-stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-stub.php -------------------------------------------------------------------------------- /bin/lms-teryt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-teryt.php -------------------------------------------------------------------------------- /bin/lms-traffic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-traffic -------------------------------------------------------------------------------- /bin/lms-traffic-htbiptlimits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-traffic-htbiptlimits -------------------------------------------------------------------------------- /bin/lms-traffic-logiptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-traffic-logiptables -------------------------------------------------------------------------------- /bin/lms-vat-payers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-vat-payers.php -------------------------------------------------------------------------------- /bin/lms-zipcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/lms-zipcodes.php -------------------------------------------------------------------------------- /bin/script-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/script-options.php -------------------------------------------------------------------------------- /bin/voip/lms-asterisk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/voip/lms-asterisk.php -------------------------------------------------------------------------------- /bin/voip/lms-billing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/bin/voip/lms-billing.php -------------------------------------------------------------------------------- /cache/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/composer.json -------------------------------------------------------------------------------- /contrib/LMS2Nagios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/LMS2Nagios/README -------------------------------------------------------------------------------- /contrib/bin/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /contrib/bin/lms-antyvir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/bin/lms-antyvir -------------------------------------------------------------------------------- /contrib/bin/lms-debtors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/bin/lms-debtors -------------------------------------------------------------------------------- /contrib/coffee_cup/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/coffee_cup/README -------------------------------------------------------------------------------- /contrib/coffee_cup/coffee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/coffee_cup/coffee.c -------------------------------------------------------------------------------- /contrib/customer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/customer/index.php -------------------------------------------------------------------------------- /contrib/daemon/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/daemon/README -------------------------------------------------------------------------------- /contrib/daemon/shaper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/daemon/shaper/README -------------------------------------------------------------------------------- /contrib/daemon/tc-ng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/daemon/tc-ng/README -------------------------------------------------------------------------------- /contrib/daemon/tc-ng/tc-ng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/daemon/tc-ng/tc-ng.c -------------------------------------------------------------------------------- /contrib/daemon/tc-ng/tc-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/daemon/tc-ng/tc-ng.h -------------------------------------------------------------------------------- /contrib/initLMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/initLMS.php -------------------------------------------------------------------------------- /contrib/lms-daemon-radius-mikrotik/.gitignore: -------------------------------------------------------------------------------- 1 | /venv/ 2 | /tmp/ 3 | -------------------------------------------------------------------------------- /contrib/lms-daemon-radius-mikrotik/log/.gitignore: -------------------------------------------------------------------------------- 1 | /ldrm.log 2 | -------------------------------------------------------------------------------- /contrib/multiip_patch/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/multiip_patch/README -------------------------------------------------------------------------------- /contrib/sqlpanel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/sqlpanel/README -------------------------------------------------------------------------------- /contrib/sqlpanel/sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/sqlpanel/sql.html -------------------------------------------------------------------------------- /contrib/sqlpanel/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/sqlpanel/sql.php -------------------------------------------------------------------------------- /contrib/sqlpanel/sqllang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/contrib/sqlpanel/sqllang.php -------------------------------------------------------------------------------- /css/fontawesome/less: -------------------------------------------------------------------------------- 1 | ../../vendor/fortawesome/font-awesome/less -------------------------------------------------------------------------------- /css/fontawesome/webfonts: -------------------------------------------------------------------------------- 1 | ../../vendor/fortawesome/font-awesome/webfonts -------------------------------------------------------------------------------- /css/less/button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/button.less -------------------------------------------------------------------------------- /css/less/combobox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/combobox.less -------------------------------------------------------------------------------- /css/less/datatables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/datatables.less -------------------------------------------------------------------------------- /css/less/fontawesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/fontawesome.less -------------------------------------------------------------------------------- /css/less/gallery.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/gallery.less -------------------------------------------------------------------------------- /css/less/generic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/generic.less -------------------------------------------------------------------------------- /css/less/hint.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/hint.less -------------------------------------------------------------------------------- /css/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/icons.less -------------------------------------------------------------------------------- /css/less/jquery-ui.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/jquery-ui.less -------------------------------------------------------------------------------- /css/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/list.less -------------------------------------------------------------------------------- /css/less/menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/menu.less -------------------------------------------------------------------------------- /css/less/modal-dialog.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/modal-dialog.less -------------------------------------------------------------------------------- /css/less/multiselect.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/multiselect.less -------------------------------------------------------------------------------- /css/less/popup-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/popup-menu.less -------------------------------------------------------------------------------- /css/less/spinner.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/less/spinner.less -------------------------------------------------------------------------------- /css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/map.css -------------------------------------------------------------------------------- /css/map.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/map.less -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/style.less -------------------------------------------------------------------------------- /css/style_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/style_print.css -------------------------------------------------------------------------------- /css/style_print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/style_print.less -------------------------------------------------------------------------------- /css/tinymce4/Variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/tinymce4/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/tinymce4/img/trans.gif -------------------------------------------------------------------------------- /css/tinymce4/skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/tinymce4/skin.json -------------------------------------------------------------------------------- /css/tinymce4/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/tinymce4/skin.min.css -------------------------------------------------------------------------------- /css/tinymce5/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/css/tinymce5/skin.min.css -------------------------------------------------------------------------------- /daemon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/.gitignore -------------------------------------------------------------------------------- /daemon/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/Makefile.am -------------------------------------------------------------------------------- /daemon/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/Makefile.in -------------------------------------------------------------------------------- /daemon/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/acinclude.m4 -------------------------------------------------------------------------------- /daemon/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/aclocal.m4 -------------------------------------------------------------------------------- /daemon/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/config.guess -------------------------------------------------------------------------------- /daemon/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/config.h.in -------------------------------------------------------------------------------- /daemon/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/config.sub -------------------------------------------------------------------------------- /daemon/config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/config/config.c -------------------------------------------------------------------------------- /daemon/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/config/config.h -------------------------------------------------------------------------------- /daemon/config/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/config/dictionary.c -------------------------------------------------------------------------------- /daemon/config/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/config/dictionary.h -------------------------------------------------------------------------------- /daemon/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/configure -------------------------------------------------------------------------------- /daemon/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/configure.ac -------------------------------------------------------------------------------- /daemon/cron/cron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/cron/cron.c -------------------------------------------------------------------------------- /daemon/cron/cron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/cron/cron.h -------------------------------------------------------------------------------- /daemon/cron/cronparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/cron/cronparse.c -------------------------------------------------------------------------------- /daemon/cron/cronparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/cron/cronparse.h -------------------------------------------------------------------------------- /daemon/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/db.h -------------------------------------------------------------------------------- /daemon/dbdrivers/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = mysql pgsql 2 | -------------------------------------------------------------------------------- /daemon/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/defs.h -------------------------------------------------------------------------------- /daemon/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/depcomp -------------------------------------------------------------------------------- /daemon/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/install-sh -------------------------------------------------------------------------------- /daemon/lmsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/lmsd.c -------------------------------------------------------------------------------- /daemon/lmsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/lmsd.h -------------------------------------------------------------------------------- /daemon/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/ltmain.sh -------------------------------------------------------------------------------- /daemon/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/m4/.gitignore -------------------------------------------------------------------------------- /daemon/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/missing -------------------------------------------------------------------------------- /daemon/modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/modules/Makefile.am -------------------------------------------------------------------------------- /daemon/modules/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/modules/Makefile.in -------------------------------------------------------------------------------- /daemon/modules/dhcp/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/modules/dhcp/dhcp.c -------------------------------------------------------------------------------- /daemon/modules/dhcp/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/modules/dhcp/dhcp.h -------------------------------------------------------------------------------- /daemon/modules/dns/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/modules/dns/dns.c -------------------------------------------------------------------------------- /daemon/modules/dns/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/modules/dns/dns.h -------------------------------------------------------------------------------- /daemon/modules/tc/tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/modules/tc/tc.c -------------------------------------------------------------------------------- /daemon/modules/tc/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/modules/tc/tc.h -------------------------------------------------------------------------------- /daemon/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/util.c -------------------------------------------------------------------------------- /daemon/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/util.h -------------------------------------------------------------------------------- /daemon/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/daemon/ylwrap -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/conf/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/conf/apache.conf -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/lms-common.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-common.config -------------------------------------------------------------------------------- /debian/lms-common.dirs: -------------------------------------------------------------------------------- 1 | etc/lms 2 | -------------------------------------------------------------------------------- /debian/lms-common.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-common.install -------------------------------------------------------------------------------- /debian/lms-common.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-common.postinst -------------------------------------------------------------------------------- /debian/lms-common.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-common.postrm -------------------------------------------------------------------------------- /debian/lms-common.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-common.prerm -------------------------------------------------------------------------------- /debian/lms-daemon-mysql.install: -------------------------------------------------------------------------------- 1 | /usr/lib/*/lmsd/mysql.so 2 | -------------------------------------------------------------------------------- /debian/lms-daemon-pgsql.install: -------------------------------------------------------------------------------- 1 | /usr/lib/*/lmsd/pgsql.so 2 | -------------------------------------------------------------------------------- /debian/lms-daemon.init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-daemon.init.d -------------------------------------------------------------------------------- /debian/lms-daemon.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-daemon.install -------------------------------------------------------------------------------- /debian/lms-doc.docs: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | -------------------------------------------------------------------------------- /debian/lms-doc.install: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | -------------------------------------------------------------------------------- /debian/lms-tools.install: -------------------------------------------------------------------------------- 1 | bin/* /usr/sbin/ 2 | 3 | -------------------------------------------------------------------------------- /debian/lms-ui-pgsql.install: -------------------------------------------------------------------------------- 1 | lib/LMSDB_driver_postgres.class.php /usr/share/lms/lib 2 | -------------------------------------------------------------------------------- /debian/lms-ui.cron.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-ui.cron.d -------------------------------------------------------------------------------- /debian/lms-ui.dirs: -------------------------------------------------------------------------------- 1 | var/cache/lms 2 | -------------------------------------------------------------------------------- /debian/lms-ui.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-ui.install -------------------------------------------------------------------------------- /debian/lms-ui.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-ui.links -------------------------------------------------------------------------------- /debian/lms-ui.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-ui.postinst -------------------------------------------------------------------------------- /debian/lms-ui.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-ui.postrm -------------------------------------------------------------------------------- /debian/lms-ui.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/lms-ui.prerm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /devel/docgen-pl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/docgen-pl.sh -------------------------------------------------------------------------------- /devel/docgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/docgen.sh -------------------------------------------------------------------------------- /devel/ethercodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/ethercodes.sh -------------------------------------------------------------------------------- /devel/jquery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/jquery.sh -------------------------------------------------------------------------------- /devel/lesscpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/lesscpy.sh -------------------------------------------------------------------------------- /devel/lms-modules-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/lms-modules-test.sh -------------------------------------------------------------------------------- /devel/navgoco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/navgoco.sh -------------------------------------------------------------------------------- /devel/show_sql_tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/show_sql_tables.sh -------------------------------------------------------------------------------- /devel/smartylint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/smartylint.php -------------------------------------------------------------------------------- /devel/strings-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/strings-js.sh -------------------------------------------------------------------------------- /devel/strings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/strings.pl -------------------------------------------------------------------------------- /devel/strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/strings.sh -------------------------------------------------------------------------------- /devel/strings_validate.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/strings_validate.awk -------------------------------------------------------------------------------- /devel/stringsback.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/stringsback.pl -------------------------------------------------------------------------------- /devel/twitter_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/twitter_bootstrap.sh -------------------------------------------------------------------------------- /devel/upgradedb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/devel/upgradedb.php -------------------------------------------------------------------------------- /doc/00-Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/00-Index.txt -------------------------------------------------------------------------------- /doc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/AUTHORS -------------------------------------------------------------------------------- /doc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/COPYING -------------------------------------------------------------------------------- /doc/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/COPYRIGHTS -------------------------------------------------------------------------------- /doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/ChangeLog -------------------------------------------------------------------------------- /doc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/INSTALL -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/README -------------------------------------------------------------------------------- /doc/README.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/README.pl -------------------------------------------------------------------------------- /doc/README_lms-sidusis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/README_lms-sidusis.md -------------------------------------------------------------------------------- /doc/html/en/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/authors.html -------------------------------------------------------------------------------- /doc/html/en/contrib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/contrib.html -------------------------------------------------------------------------------- /doc/html/en/daemon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/daemon.html -------------------------------------------------------------------------------- /doc/html/en/devel-db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/devel-db.html -------------------------------------------------------------------------------- /doc/html/en/devel-ini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/devel-ini.html -------------------------------------------------------------------------------- /doc/html/en/devel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/devel.html -------------------------------------------------------------------------------- /doc/html/en/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/faq.html -------------------------------------------------------------------------------- /doc/html/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/index.html -------------------------------------------------------------------------------- /doc/html/en/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/install.html -------------------------------------------------------------------------------- /doc/html/en/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/intro.html -------------------------------------------------------------------------------- /doc/html/en/mgc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/mgc.html -------------------------------------------------------------------------------- /doc/html/en/moreinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/moreinfo.html -------------------------------------------------------------------------------- /doc/html/en/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/scripts.html -------------------------------------------------------------------------------- /doc/html/en/tscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/tscript.html -------------------------------------------------------------------------------- /doc/html/en/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/user.html -------------------------------------------------------------------------------- /doc/html/en/userpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/en/userpanel.html -------------------------------------------------------------------------------- /doc/html/images/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/images/note.gif -------------------------------------------------------------------------------- /doc/html/images/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/images/style.css -------------------------------------------------------------------------------- /doc/html/pl/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/authors.html -------------------------------------------------------------------------------- /doc/html/pl/contrib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/contrib.html -------------------------------------------------------------------------------- /doc/html/pl/daemon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/daemon.html -------------------------------------------------------------------------------- /doc/html/pl/devel-db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/devel-db.html -------------------------------------------------------------------------------- /doc/html/pl/devel-ini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/devel-ini.html -------------------------------------------------------------------------------- /doc/html/pl/devel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/devel.html -------------------------------------------------------------------------------- /doc/html/pl/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/faq.html -------------------------------------------------------------------------------- /doc/html/pl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/index.html -------------------------------------------------------------------------------- /doc/html/pl/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/install.html -------------------------------------------------------------------------------- /doc/html/pl/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/intro.html -------------------------------------------------------------------------------- /doc/html/pl/mgc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/mgc.html -------------------------------------------------------------------------------- /doc/html/pl/moreinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/moreinfo.html -------------------------------------------------------------------------------- /doc/html/pl/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/scripts.html -------------------------------------------------------------------------------- /doc/html/pl/tscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/tscript.html -------------------------------------------------------------------------------- /doc/html/pl/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/user.html -------------------------------------------------------------------------------- /doc/html/pl/userpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/html/pl/userpanel.html -------------------------------------------------------------------------------- /doc/lms.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/lms.mysql -------------------------------------------------------------------------------- /doc/lms.pgsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/lms.pgsql -------------------------------------------------------------------------------- /doc/sgml/advanced.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/advanced.sgml -------------------------------------------------------------------------------- /doc/sgml/contrib.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/contrib.sgml -------------------------------------------------------------------------------- /doc/sgml/daemon.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/daemon.sgml -------------------------------------------------------------------------------- /doc/sgml/faq.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/faq.sgml -------------------------------------------------------------------------------- /doc/sgml/index.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/index.sgml -------------------------------------------------------------------------------- /doc/sgml/install.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/install.sgml -------------------------------------------------------------------------------- /doc/sgml/intro.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/intro.sgml -------------------------------------------------------------------------------- /doc/sgml/lms.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/lms.dsl -------------------------------------------------------------------------------- /doc/sgml/mgc.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/mgc.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/advanced.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/advanced.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/contrib.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/contrib.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/daemon.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/daemon.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/faq.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/faq.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/index.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/index.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/install.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/install.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/intro.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/intro.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/lms.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/lms.dsl -------------------------------------------------------------------------------- /doc/sgml/pl/mgc.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/mgc.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/scripts.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/scripts.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/tscript.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/tscript.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/userif.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/userif.sgml -------------------------------------------------------------------------------- /doc/sgml/pl/userpanel.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/pl/userpanel.sgml -------------------------------------------------------------------------------- /doc/sgml/scripts.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/scripts.sgml -------------------------------------------------------------------------------- /doc/sgml/tscript.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/tscript.sgml -------------------------------------------------------------------------------- /doc/sgml/userif.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/userif.sgml -------------------------------------------------------------------------------- /doc/sgml/userpanel.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/doc/sgml/userpanel.sgml -------------------------------------------------------------------------------- /doc/sgml/version.sgml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /documents/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/1.png -------------------------------------------------------------------------------- /img/24-ring-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/24-ring-black.png -------------------------------------------------------------------------------- /img/24-ring-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/24-ring-blue.png -------------------------------------------------------------------------------- /img/24-ring-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/24-ring-orange.png -------------------------------------------------------------------------------- /img/24-ring-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/24-ring-red.png -------------------------------------------------------------------------------- /img/Arial.fdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/Arial.fdb -------------------------------------------------------------------------------- /img/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/Exit.png -------------------------------------------------------------------------------- /img/access.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/access.gif -------------------------------------------------------------------------------- /img/accessdenied.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/accessdenied.gif -------------------------------------------------------------------------------- /img/account.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/account.gif -------------------------------------------------------------------------------- /img/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/add.gif -------------------------------------------------------------------------------- /img/alec.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/alec.icon.gif -------------------------------------------------------------------------------- /img/alias.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/alias.gif -------------------------------------------------------------------------------- /img/asc_order.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/asc_order.gif -------------------------------------------------------------------------------- /img/attach.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/attach.gif -------------------------------------------------------------------------------- /img/baseciq.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/baseciq.icon.gif -------------------------------------------------------------------------------- /img/bluepx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/bluepx.gif -------------------------------------------------------------------------------- /img/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/calendar.gif -------------------------------------------------------------------------------- /img/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/calendar.png -------------------------------------------------------------------------------- /img/calendar_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/calendar_add.png -------------------------------------------------------------------------------- /img/cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/cancel.gif -------------------------------------------------------------------------------- /img/card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/card.gif -------------------------------------------------------------------------------- /img/ceho.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ceho.icon.gif -------------------------------------------------------------------------------- /img/channel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/channel.gif -------------------------------------------------------------------------------- /img/chilek.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/chilek.icon.gif -------------------------------------------------------------------------------- /img/class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/class.gif -------------------------------------------------------------------------------- /img/clone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/clone.gif -------------------------------------------------------------------------------- /img/cmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/cmp.gif -------------------------------------------------------------------------------- /img/cms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/cms.gif -------------------------------------------------------------------------------- /img/common.js: -------------------------------------------------------------------------------- 1 | ../js/common.js -------------------------------------------------------------------------------- /img/computer_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/computer_add.png -------------------------------------------------------------------------------- /img/computer_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/computer_warning.png -------------------------------------------------------------------------------- /img/computers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/computers.png -------------------------------------------------------------------------------- /img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/confirm.gif -------------------------------------------------------------------------------- /img/core/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/core/error.png -------------------------------------------------------------------------------- /img/creditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/creditor.gif -------------------------------------------------------------------------------- /img/customer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/customer.gif -------------------------------------------------------------------------------- /img/customers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/customers.gif -------------------------------------------------------------------------------- /img/db.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/db.gif -------------------------------------------------------------------------------- /img/dbnew.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/dbnew.gif -------------------------------------------------------------------------------- /img/dead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/dead.gif -------------------------------------------------------------------------------- /img/deadline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/deadline.png -------------------------------------------------------------------------------- /img/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/delete.gif -------------------------------------------------------------------------------- /img/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/desc.gif -------------------------------------------------------------------------------- /img/desc_order.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/desc_order.gif -------------------------------------------------------------------------------- /img/dhcp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/dhcp.gif -------------------------------------------------------------------------------- /img/dhcpend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/dhcpend.gif -------------------------------------------------------------------------------- /img/dhcpstart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/dhcpstart.gif -------------------------------------------------------------------------------- /img/division.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/division.gif -------------------------------------------------------------------------------- /img/dns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/dns.gif -------------------------------------------------------------------------------- /img/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/doc.gif -------------------------------------------------------------------------------- /img/docum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/docum.gif -------------------------------------------------------------------------------- /img/domain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/domain.gif -------------------------------------------------------------------------------- /img/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/down.gif -------------------------------------------------------------------------------- /img/downrate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/downrate.gif -------------------------------------------------------------------------------- /img/dropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/dropdown.gif -------------------------------------------------------------------------------- /img/druk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/druk.gif -------------------------------------------------------------------------------- /img/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/edit.gif -------------------------------------------------------------------------------- /img/email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/email.gif -------------------------------------------------------------------------------- /img/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/empty.gif -------------------------------------------------------------------------------- /img/eraser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/eraser.gif -------------------------------------------------------------------------------- /img/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/error.gif -------------------------------------------------------------------------------- /img/event-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/event-add.png -------------------------------------------------------------------------------- /img/event-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/event-close.png -------------------------------------------------------------------------------- /img/exclamation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/exclamation.gif -------------------------------------------------------------------------------- /img/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/folder.gif -------------------------------------------------------------------------------- /img/forward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/forward.gif -------------------------------------------------------------------------------- /img/gateway.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/gateway.gif -------------------------------------------------------------------------------- /img/gg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/gg.gif -------------------------------------------------------------------------------- /img/greenpx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/greenpx.gif -------------------------------------------------------------------------------- /img/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/group.gif -------------------------------------------------------------------------------- /img/guarantee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/guarantee.png -------------------------------------------------------------------------------- /img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/help.png -------------------------------------------------------------------------------- /img/helpdesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/helpdesk.png -------------------------------------------------------------------------------- /img/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/home.gif -------------------------------------------------------------------------------- /img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/home.png -------------------------------------------------------------------------------- /img/host.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/host.gif -------------------------------------------------------------------------------- /img/hunter.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/hunter.icon.gif -------------------------------------------------------------------------------- /img/ico_przelew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ico_przelew.png -------------------------------------------------------------------------------- /img/id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/id.gif -------------------------------------------------------------------------------- /img/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/info.gif -------------------------------------------------------------------------------- /img/info1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/info1.gif -------------------------------------------------------------------------------- /img/info2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/info2.gif -------------------------------------------------------------------------------- /img/info3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/info3.gif -------------------------------------------------------------------------------- /img/interduo.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/interduo.icon.gif -------------------------------------------------------------------------------- /img/ip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ip.gif -------------------------------------------------------------------------------- /img/ip_pub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ip_pub.gif -------------------------------------------------------------------------------- /img/isource.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/isource.gif -------------------------------------------------------------------------------- /img/keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/keys.gif -------------------------------------------------------------------------------- /img/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/kp.png -------------------------------------------------------------------------------- /img/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/kw.png -------------------------------------------------------------------------------- /img/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/l.gif -------------------------------------------------------------------------------- /img/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/left.gif -------------------------------------------------------------------------------- /img/lexx.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/lexx.icon.gif -------------------------------------------------------------------------------- /img/lion.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/lion.icon.gif -------------------------------------------------------------------------------- /img/lms-net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/lms-net.gif -------------------------------------------------------------------------------- /img/lms-powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/lms-powered.png -------------------------------------------------------------------------------- /img/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/location.png -------------------------------------------------------------------------------- /img/logo-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/logo-40.png -------------------------------------------------------------------------------- /img/logo-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/logo-ico.png -------------------------------------------------------------------------------- /img/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/logo-small.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/logout.gif -------------------------------------------------------------------------------- /img/mac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/mac.gif -------------------------------------------------------------------------------- /img/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/mail.gif -------------------------------------------------------------------------------- /img/mail_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/mail_add.png -------------------------------------------------------------------------------- /img/mailsms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/mailsms.gif -------------------------------------------------------------------------------- /img/mixaccess.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/mixaccess.gif -------------------------------------------------------------------------------- /img/money.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/money.gif -------------------------------------------------------------------------------- /img/name.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/name.gif -------------------------------------------------------------------------------- /img/netdev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev.gif -------------------------------------------------------------------------------- /img/netdev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev.png -------------------------------------------------------------------------------- /img/netdev_model.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_model.gif -------------------------------------------------------------------------------- /img/netdev_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_off.gif -------------------------------------------------------------------------------- /img/netdev_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_off.jpg -------------------------------------------------------------------------------- /img/netdev_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_off.png -------------------------------------------------------------------------------- /img/netdev_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_on.gif -------------------------------------------------------------------------------- /img/netdev_on.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_on.jpg -------------------------------------------------------------------------------- /img/netdev_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_on.png -------------------------------------------------------------------------------- /img/netdev_takenports.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_takenports.gif -------------------------------------------------------------------------------- /img/netdev_unk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_unk.gif -------------------------------------------------------------------------------- /img/netdev_unk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_unk.jpg -------------------------------------------------------------------------------- /img/netdev_unk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netdev_unk.png -------------------------------------------------------------------------------- /img/netnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/netnode.png -------------------------------------------------------------------------------- /img/network.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/network.gif -------------------------------------------------------------------------------- /img/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/new.gif -------------------------------------------------------------------------------- /img/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/next.gif -------------------------------------------------------------------------------- /img/next_year.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/next_year.gif -------------------------------------------------------------------------------- /img/noaccess.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/noaccess.gif -------------------------------------------------------------------------------- /img/node.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node.gif -------------------------------------------------------------------------------- /img/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node.png -------------------------------------------------------------------------------- /img/node_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_off.gif -------------------------------------------------------------------------------- /img/node_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_off.jpg -------------------------------------------------------------------------------- /img/node_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_off.png -------------------------------------------------------------------------------- /img/node_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_on.gif -------------------------------------------------------------------------------- /img/node_on.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_on.jpg -------------------------------------------------------------------------------- /img/node_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_on.png -------------------------------------------------------------------------------- /img/node_unk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_unk.gif -------------------------------------------------------------------------------- /img/node_unk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_unk.jpg -------------------------------------------------------------------------------- /img/node_unk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/node_unk.png -------------------------------------------------------------------------------- /img/nodegroup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/nodegroup.gif -------------------------------------------------------------------------------- /img/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/note.gif -------------------------------------------------------------------------------- /img/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/open.gif -------------------------------------------------------------------------------- /img/opensource-110x95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/opensource-110x95.gif -------------------------------------------------------------------------------- /img/options.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/options.gif -------------------------------------------------------------------------------- /img/pass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/pass.gif -------------------------------------------------------------------------------- /img/passwd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/passwd.gif -------------------------------------------------------------------------------- /img/pay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/pay.gif -------------------------------------------------------------------------------- /img/payment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/payment.gif -------------------------------------------------------------------------------- /img/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/pdf.gif -------------------------------------------------------------------------------- /img/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/phone.gif -------------------------------------------------------------------------------- /img/pie.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/pie.htc -------------------------------------------------------------------------------- /img/pin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/pin.gif -------------------------------------------------------------------------------- /img/pin_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/pin_blue.png -------------------------------------------------------------------------------- /img/plain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/plain.gif -------------------------------------------------------------------------------- /img/port.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/port.gif -------------------------------------------------------------------------------- /img/post.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/post.gif -------------------------------------------------------------------------------- /img/poweredbylms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/poweredbylms.gif -------------------------------------------------------------------------------- /img/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/prev.gif -------------------------------------------------------------------------------- /img/prev_year.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/prev_year.gif -------------------------------------------------------------------------------- /img/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/print.gif -------------------------------------------------------------------------------- /img/printd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/printd.gif -------------------------------------------------------------------------------- /img/printm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/printm.gif -------------------------------------------------------------------------------- /img/printn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/printn.gif -------------------------------------------------------------------------------- /img/printr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/printr.gif -------------------------------------------------------------------------------- /img/producer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/producer.gif -------------------------------------------------------------------------------- /img/promo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/promo.gif -------------------------------------------------------------------------------- /img/promoschema.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/promoschema.gif -------------------------------------------------------------------------------- /img/przelew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/przelew.png -------------------------------------------------------------------------------- /img/queue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/queue.gif -------------------------------------------------------------------------------- /img/radius.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/radius.gif -------------------------------------------------------------------------------- /img/ravvar.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ravvar.icon.gif -------------------------------------------------------------------------------- /img/recover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/recover.gif -------------------------------------------------------------------------------- /img/redpx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/redpx.gif -------------------------------------------------------------------------------- /img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/refresh.png -------------------------------------------------------------------------------- /img/reload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/reload.gif -------------------------------------------------------------------------------- /img/remap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/remap.gif -------------------------------------------------------------------------------- /img/report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/report.gif -------------------------------------------------------------------------------- /img/resolved.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/resolved.gif -------------------------------------------------------------------------------- /img/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/right.gif -------------------------------------------------------------------------------- /img/ring-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ring-orange.png -------------------------------------------------------------------------------- /img/ring-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ring-red.png -------------------------------------------------------------------------------- /img/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/save.gif -------------------------------------------------------------------------------- /img/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/schedule.png -------------------------------------------------------------------------------- /img/search-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/search-results.png -------------------------------------------------------------------------------- /img/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/search.gif -------------------------------------------------------------------------------- /img/serialnumber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/serialnumber.gif -------------------------------------------------------------------------------- /img/service-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/service-type.png -------------------------------------------------------------------------------- /img/settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/settings.gif -------------------------------------------------------------------------------- /img/size.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/size.gif -------------------------------------------------------------------------------- /img/skype.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/skype.gif -------------------------------------------------------------------------------- /img/smarty_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/smarty_icon.gif -------------------------------------------------------------------------------- /img/sms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/sms.gif -------------------------------------------------------------------------------- /img/state.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/state.gif -------------------------------------------------------------------------------- /img/style.css: -------------------------------------------------------------------------------- 1 | ../css/style.css -------------------------------------------------------------------------------- /img/style_print.css: -------------------------------------------------------------------------------- 1 | ../css/style_print.css -------------------------------------------------------------------------------- /img/tax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/tax.gif -------------------------------------------------------------------------------- /img/ticket-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ticket-read.png -------------------------------------------------------------------------------- /img/ticket-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ticket-type.png -------------------------------------------------------------------------------- /img/ticket-unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ticket-unread.png -------------------------------------------------------------------------------- /img/ticket.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/ticket.gif -------------------------------------------------------------------------------- /img/time.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/time.gif -------------------------------------------------------------------------------- /img/tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/tip.gif -------------------------------------------------------------------------------- /img/totd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/totd.gif -------------------------------------------------------------------------------- /img/traffic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/traffic.gif -------------------------------------------------------------------------------- /img/transferform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/transferform.png -------------------------------------------------------------------------------- /img/unk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/unk.gif -------------------------------------------------------------------------------- /img/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/up.gif -------------------------------------------------------------------------------- /img/uprate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/uprate.gif -------------------------------------------------------------------------------- /img/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/user_add.png -------------------------------------------------------------------------------- /img/user_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/user_warning.png -------------------------------------------------------------------------------- /img/users.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/users.gif -------------------------------------------------------------------------------- /img/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/users.png -------------------------------------------------------------------------------- /img/value.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/value.gif -------------------------------------------------------------------------------- /img/values.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/values.gif -------------------------------------------------------------------------------- /img/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/view.gif -------------------------------------------------------------------------------- /img/voip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/voip.gif -------------------------------------------------------------------------------- /img/volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/volcano.png -------------------------------------------------------------------------------- /img/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/wait.gif -------------------------------------------------------------------------------- /img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/warning.png -------------------------------------------------------------------------------- /img/warningmix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/warningmix.gif -------------------------------------------------------------------------------- /img/warningoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/warningoff.gif -------------------------------------------------------------------------------- /img/warningon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/warningon.gif -------------------------------------------------------------------------------- /img/wins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/wins.gif -------------------------------------------------------------------------------- /img/wireless.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/wireless.gif -------------------------------------------------------------------------------- /img/xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/xls.gif -------------------------------------------------------------------------------- /img/yim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/yim.gif -------------------------------------------------------------------------------- /img/zipped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/img/zipped.gif -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/index.php -------------------------------------------------------------------------------- /js/Autolinker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/Autolinker.min.js -------------------------------------------------------------------------------- /js/Autolinker.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/Autolinker.min.js.map -------------------------------------------------------------------------------- /js/ClickShowHideMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/ClickShowHideMenu.js -------------------------------------------------------------------------------- /js/DragPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/DragPopup.js -------------------------------------------------------------------------------- /js/OpenLayers/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/OpenLayers/lang/pl.js -------------------------------------------------------------------------------- /js/OpenLayers/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/OpenLayers/license.txt -------------------------------------------------------------------------------- /js/OpenLayers/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/OpenLayers/readme.txt -------------------------------------------------------------------------------- /js/autoiframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/autoiframe.js -------------------------------------------------------------------------------- /js/autosuggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/autosuggest.js -------------------------------------------------------------------------------- /js/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/base64.js -------------------------------------------------------------------------------- /js/clipboard.min.js: -------------------------------------------------------------------------------- 1 | ../vendor/zenorocha/clipboardjs/dist/clipboard.min.js -------------------------------------------------------------------------------- /js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/common.js -------------------------------------------------------------------------------- /js/galleria: -------------------------------------------------------------------------------- 1 | ../vendor/galleriajs/galleria/dist -------------------------------------------------------------------------------- /js/input-autogrow.min.js: -------------------------------------------------------------------------------- 1 | ../vendor/westonganger/input-autogrow/dist/input-autogrow.min.js -------------------------------------------------------------------------------- /js/jquery: -------------------------------------------------------------------------------- 1 | ../vendor/components/jquery -------------------------------------------------------------------------------- /js/jquery-chosen: -------------------------------------------------------------------------------- 1 | ../vendor/harvesthq/chosen -------------------------------------------------------------------------------- /js/jquery-datatables: -------------------------------------------------------------------------------- 1 | ../vendor/datatables/datatables -------------------------------------------------------------------------------- /js/jquery-datatables-responsive: -------------------------------------------------------------------------------- 1 | ../vendor/drmonty/datatables-responsive -------------------------------------------------------------------------------- /js/jquery-datetimepicker: -------------------------------------------------------------------------------- 1 | ../vendor/xdan/datetimepicker -------------------------------------------------------------------------------- /js/jquery-simple-combobox: -------------------------------------------------------------------------------- 1 | ../vendor/ivkremer/jquery-simple-combobox -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/jquery.js -------------------------------------------------------------------------------- /js/jqueryui: -------------------------------------------------------------------------------- 1 | ../vendor/components/jqueryui -------------------------------------------------------------------------------- /js/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/language.js -------------------------------------------------------------------------------- /js/lms-ui-combobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-combobox.js -------------------------------------------------------------------------------- /js/lms-ui-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-datepicker.js -------------------------------------------------------------------------------- /js/lms-ui-day-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-day-selection.js -------------------------------------------------------------------------------- /js/lms-ui-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-dialog.js -------------------------------------------------------------------------------- /js/lms-ui-dragslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-dragslider.js -------------------------------------------------------------------------------- /js/lms-ui-fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-fileupload.js -------------------------------------------------------------------------------- /js/lms-ui-fileview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-fileview.js -------------------------------------------------------------------------------- /js/lms-ui-geocoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-geocoding.js -------------------------------------------------------------------------------- /js/lms-ui-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-karma.js -------------------------------------------------------------------------------- /js/lms-ui-multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/lms-ui-multiselect.js -------------------------------------------------------------------------------- /js/locale/cs_CZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/locale/cs_CZ.js -------------------------------------------------------------------------------- /js/locale/en_US.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/locale/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/locale/lt_LT.js -------------------------------------------------------------------------------- /js/locale/pl_PL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/locale/pl_PL.js -------------------------------------------------------------------------------- /js/locale/ro_RO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/locale/ro_RO.js -------------------------------------------------------------------------------- /js/locale/sk_SK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/locale/sk_SK.js -------------------------------------------------------------------------------- /js/location_box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/location_box.js -------------------------------------------------------------------------------- /js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/map.js -------------------------------------------------------------------------------- /js/modal-dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/modal-dialogs.js -------------------------------------------------------------------------------- /js/mousetrap: -------------------------------------------------------------------------------- 1 | ../vendor/ccampbell/mousetrap -------------------------------------------------------------------------------- /js/overlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/overlib.js -------------------------------------------------------------------------------- /js/popup-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/popup-menu.js -------------------------------------------------------------------------------- /js/select2: -------------------------------------------------------------------------------- 1 | ../vendor/select2/select2/dist -------------------------------------------------------------------------------- /js/sprintf.min.js: -------------------------------------------------------------------------------- 1 | ../vendor/alexei/sprintf.js/dist/sprintf.min.js -------------------------------------------------------------------------------- /js/sprintf.min.js.map: -------------------------------------------------------------------------------- 1 | ../vendor/alexei/sprintf.js/dist/sprintf.min.js.map -------------------------------------------------------------------------------- /js/tinymce: -------------------------------------------------------------------------------- 1 | ../vendor/tinymce/tinymce -------------------------------------------------------------------------------- /js/tinymce4/langs/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce4/langs/cs.js -------------------------------------------------------------------------------- /js/tinymce4/langs/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce4/langs/en_GB.js -------------------------------------------------------------------------------- /js/tinymce4/langs/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce4/langs/lt.js -------------------------------------------------------------------------------- /js/tinymce4/langs/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce4/langs/pl.js -------------------------------------------------------------------------------- /js/tinymce4/langs/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce4/langs/ro.js -------------------------------------------------------------------------------- /js/tinymce4/langs/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce4/langs/sk.js -------------------------------------------------------------------------------- /js/tinymce5/langs/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce5/langs/cs.js -------------------------------------------------------------------------------- /js/tinymce5/langs/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce5/langs/lt.js -------------------------------------------------------------------------------- /js/tinymce5/langs/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce5/langs/pl.js -------------------------------------------------------------------------------- /js/tinymce5/langs/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce5/langs/ro.js -------------------------------------------------------------------------------- /js/tinymce5/langs/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/tinymce5/langs/sk.js -------------------------------------------------------------------------------- /js/xajax_js/JSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/xajax_js/JSON.js -------------------------------------------------------------------------------- /js/xajax_js/xajax_core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/xajax_js/xajax_core.js -------------------------------------------------------------------------------- /js/xajax_js/xajax_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/js/xajax_js/xajax_debug.js -------------------------------------------------------------------------------- /lib/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /lib/Auth.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/Auth.class.php -------------------------------------------------------------------------------- /lib/EtherCodes.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/EtherCodes.class.php -------------------------------------------------------------------------------- /lib/ExecStack.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/ExecStack.class.php -------------------------------------------------------------------------------- /lib/LMS.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMS.class.php -------------------------------------------------------------------------------- /lib/LMSCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSCache.php -------------------------------------------------------------------------------- /lib/LMSDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSDB.php -------------------------------------------------------------------------------- /lib/LMSDBInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSDBInterface.php -------------------------------------------------------------------------------- /lib/LMSDB_common.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSDB_common.class.php -------------------------------------------------------------------------------- /lib/LMSPagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSPagination.php -------------------------------------------------------------------------------- /lib/LMSPaginationLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSPaginationLong.php -------------------------------------------------------------------------------- /lib/LMSPaginationShort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSPaginationShort.php -------------------------------------------------------------------------------- /lib/LMSPagination_ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSPagination_ext.php -------------------------------------------------------------------------------- /lib/LMSSmarty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/LMSSmarty.php -------------------------------------------------------------------------------- /lib/SYSLOG.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/SYSLOG.class.php -------------------------------------------------------------------------------- /lib/Session.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/Session.class.php -------------------------------------------------------------------------------- /lib/Sysinfo.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/Sysinfo.class.php -------------------------------------------------------------------------------- /lib/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/Utils.php -------------------------------------------------------------------------------- /lib/accesstable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/accesstable.php -------------------------------------------------------------------------------- /lib/checkdirs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/checkdirs.php -------------------------------------------------------------------------------- /lib/checkip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/checkip.php -------------------------------------------------------------------------------- /lib/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/common.php -------------------------------------------------------------------------------- /lib/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/config.php -------------------------------------------------------------------------------- /lib/customerconsents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/customerconsents.php -------------------------------------------------------------------------------- /lib/definitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/definitions.php -------------------------------------------------------------------------------- /lib/dns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/dns.php -------------------------------------------------------------------------------- /lib/ethercodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/ethercodes.txt -------------------------------------------------------------------------------- /lib/ezpdf/fonts/arial.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/ezpdf/fonts/arial.afm -------------------------------------------------------------------------------- /lib/ezpdf/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/ezpdf/fonts/arial.ttf -------------------------------------------------------------------------------- /lib/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/language.php -------------------------------------------------------------------------------- /lib/locale/cs_CZ/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/locale/cs_CZ/ui.php -------------------------------------------------------------------------------- /lib/locale/en_GB/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/locale/en_GB/ui.php -------------------------------------------------------------------------------- /lib/locale/en_GY/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/locale/en_GY/ui.php -------------------------------------------------------------------------------- /lib/locale/en_US/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/locale/en_US/ui.php -------------------------------------------------------------------------------- /lib/locale/lt_LT/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/locale/lt_LT/ui.php -------------------------------------------------------------------------------- /lib/locale/pl_PL/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/locale/pl_PL/ui.php -------------------------------------------------------------------------------- /lib/locale/ro_RO/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/locale/ro_RO/ui.php -------------------------------------------------------------------------------- /lib/locale/sk_SK/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/locale/sk_SK/ui.php -------------------------------------------------------------------------------- /lib/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/menu.php -------------------------------------------------------------------------------- /lib/plugins/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/plugins/example.php -------------------------------------------------------------------------------- /lib/tax_office_codes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/tax_office_codes.php -------------------------------------------------------------------------------- /lib/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/lib/tcpdf.php -------------------------------------------------------------------------------- /modules/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /modules/accountadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/accountadd.php -------------------------------------------------------------------------------- /modules/accountdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/accountdel.php -------------------------------------------------------------------------------- /modules/accountedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/accountedit.php -------------------------------------------------------------------------------- /modules/accountinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/accountinfo.php -------------------------------------------------------------------------------- /modules/accountlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/accountlist.php -------------------------------------------------------------------------------- /modules/accountpasswd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/accountpasswd.php -------------------------------------------------------------------------------- /modules/accountsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/accountsearch.php -------------------------------------------------------------------------------- /modules/aliasadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/aliasadd.php -------------------------------------------------------------------------------- /modules/aliasdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/aliasdel.php -------------------------------------------------------------------------------- /modules/aliasedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/aliasedit.php -------------------------------------------------------------------------------- /modules/aliasinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/aliasinfo.php -------------------------------------------------------------------------------- /modules/aliaslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/aliaslist.php -------------------------------------------------------------------------------- /modules/aliassearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/aliassearch.php -------------------------------------------------------------------------------- /modules/archiveinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/archiveinfo.php -------------------------------------------------------------------------------- /modules/archiveview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/archiveview.php -------------------------------------------------------------------------------- /modules/attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/attachments.php -------------------------------------------------------------------------------- /modules/auth/img/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/auth/img/check.gif -------------------------------------------------------------------------------- /modules/auth/img/plain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/auth/img/plain.gif -------------------------------------------------------------------------------- /modules/auth/modinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/auth/modinfo.php -------------------------------------------------------------------------------- /modules/auth/modinit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/auth/modinit.php -------------------------------------------------------------------------------- /modules/balanceadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/balanceadd.php -------------------------------------------------------------------------------- /modules/balancedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/balancedel.php -------------------------------------------------------------------------------- /modules/balancelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/balancelist.php -------------------------------------------------------------------------------- /modules/balancenew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/balancenew.php -------------------------------------------------------------------------------- /modules/calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/calendar.php -------------------------------------------------------------------------------- /modules/cashimport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashimport.php -------------------------------------------------------------------------------- /modules/cashimportcfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashimportcfg.php -------------------------------------------------------------------------------- /modules/cashpackagedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashpackagedel.php -------------------------------------------------------------------------------- /modules/cashregadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashregadd.php -------------------------------------------------------------------------------- /modules/cashregdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashregdel.php -------------------------------------------------------------------------------- /modules/cashregedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashregedit.php -------------------------------------------------------------------------------- /modules/cashreginfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashreginfo.php -------------------------------------------------------------------------------- /modules/cashreglist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashreglist.php -------------------------------------------------------------------------------- /modules/cashreglogadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashreglogadd.php -------------------------------------------------------------------------------- /modules/cashreglogdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashreglogdel.php -------------------------------------------------------------------------------- /modules/cashreglogedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashreglogedit.php -------------------------------------------------------------------------------- /modules/cashregloginfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashregloginfo.php -------------------------------------------------------------------------------- /modules/cashreglogview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashreglogview.php -------------------------------------------------------------------------------- /modules/cashsourceadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashsourceadd.php -------------------------------------------------------------------------------- /modules/cashsourcedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashsourcedel.php -------------------------------------------------------------------------------- /modules/cashsourceedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashsourceedit.php -------------------------------------------------------------------------------- /modules/cashsourcelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/cashsourcelist.php -------------------------------------------------------------------------------- /modules/choosecustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/choosecustomer.php -------------------------------------------------------------------------------- /modules/chooseip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/chooseip.php -------------------------------------------------------------------------------- /modules/chooselocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/chooselocation.php -------------------------------------------------------------------------------- /modules/choosemac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/choosemac.php -------------------------------------------------------------------------------- /modules/choosenode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/choosenode.php -------------------------------------------------------------------------------- /modules/chpasswd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/chpasswd.php -------------------------------------------------------------------------------- /modules/configadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/configadd.php -------------------------------------------------------------------------------- /modules/configdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/configdel.php -------------------------------------------------------------------------------- /modules/configedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/configedit.php -------------------------------------------------------------------------------- /modules/configexport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/configexport.php -------------------------------------------------------------------------------- /modules/configimport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/configimport.php -------------------------------------------------------------------------------- /modules/configinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/configinfo.php -------------------------------------------------------------------------------- /modules/configlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/configlist.php -------------------------------------------------------------------------------- /modules/configload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/configload.php -------------------------------------------------------------------------------- /modules/confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/confirm.php -------------------------------------------------------------------------------- /modules/copyrights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/copyrights.php -------------------------------------------------------------------------------- /modules/core/modinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/core/modinfo.php -------------------------------------------------------------------------------- /modules/core/templates/dialog.html: -------------------------------------------------------------------------------- 1 | 2 | {$body} 3 | -------------------------------------------------------------------------------- /modules/customer.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customer.inc.php -------------------------------------------------------------------------------- /modules/customeradd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customeradd.php -------------------------------------------------------------------------------- /modules/customercall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customercall.php -------------------------------------------------------------------------------- /modules/customerdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customerdel.php -------------------------------------------------------------------------------- /modules/customeredit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customeredit.php -------------------------------------------------------------------------------- /modules/customergroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customergroup.php -------------------------------------------------------------------------------- /modules/customerinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customerinfo.php -------------------------------------------------------------------------------- /modules/customerlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customerlist.php -------------------------------------------------------------------------------- /modules/customername.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customername.php -------------------------------------------------------------------------------- /modules/customernote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customernote.php -------------------------------------------------------------------------------- /modules/customerprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customerprint.php -------------------------------------------------------------------------------- /modules/customersearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customersearch.php -------------------------------------------------------------------------------- /modules/customerselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customerselect.php -------------------------------------------------------------------------------- /modules/customerwarn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/customerwarn.php -------------------------------------------------------------------------------- /modules/dbdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/dbdel.php -------------------------------------------------------------------------------- /modules/dblist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/dblist.php -------------------------------------------------------------------------------- /modules/dbnew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/dbnew.php -------------------------------------------------------------------------------- /modules/dbrecover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/dbrecover.php -------------------------------------------------------------------------------- /modules/dbview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/dbview.php -------------------------------------------------------------------------------- /modules/divisionadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/divisionadd.php -------------------------------------------------------------------------------- /modules/divisionclone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/divisionclone.php -------------------------------------------------------------------------------- /modules/divisiondel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/divisiondel.php -------------------------------------------------------------------------------- /modules/divisionedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/divisionedit.php -------------------------------------------------------------------------------- /modules/divisionlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/divisionlist.php -------------------------------------------------------------------------------- /modules/dns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/dns.php -------------------------------------------------------------------------------- /modules/document.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/document.inc.php -------------------------------------------------------------------------------- /modules/documentadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/documentadd.php -------------------------------------------------------------------------------- /modules/documentdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/documentdel.php -------------------------------------------------------------------------------- /modules/documentedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/documentedit.php -------------------------------------------------------------------------------- /modules/documentgen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/documentgen.php -------------------------------------------------------------------------------- /modules/documentlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/documentlist.php -------------------------------------------------------------------------------- /modules/documentsend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/documentsend.php -------------------------------------------------------------------------------- /modules/documenttypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/documenttypes.php -------------------------------------------------------------------------------- /modules/documentview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/documentview.php -------------------------------------------------------------------------------- /modules/domainadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/domainadd.php -------------------------------------------------------------------------------- /modules/domaindel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/domaindel.php -------------------------------------------------------------------------------- /modules/domainedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/domainedit.php -------------------------------------------------------------------------------- /modules/domaininfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/domaininfo.php -------------------------------------------------------------------------------- /modules/domainlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/domainlist.php -------------------------------------------------------------------------------- /modules/domainsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/domainsearch.php -------------------------------------------------------------------------------- /modules/eventadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventadd.php -------------------------------------------------------------------------------- /modules/eventdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventdel.php -------------------------------------------------------------------------------- /modules/eventedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventedit.php -------------------------------------------------------------------------------- /modules/eventinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventinfo.php -------------------------------------------------------------------------------- /modules/eventinfoshort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventinfoshort.php -------------------------------------------------------------------------------- /modules/eventlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventlist.php -------------------------------------------------------------------------------- /modules/eventnote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventnote.php -------------------------------------------------------------------------------- /modules/eventprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventprint.php -------------------------------------------------------------------------------- /modules/eventschedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventschedule.php -------------------------------------------------------------------------------- /modules/eventsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventsearch.php -------------------------------------------------------------------------------- /modules/eventxajax.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/eventxajax.inc.php -------------------------------------------------------------------------------- /modules/ewxchadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ewxchadd.php -------------------------------------------------------------------------------- /modules/ewxchdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ewxchdel.php -------------------------------------------------------------------------------- /modules/ewxchedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ewxchedit.php -------------------------------------------------------------------------------- /modules/ewxchinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ewxchinfo.php -------------------------------------------------------------------------------- /modules/ewxchlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ewxchlist.php -------------------------------------------------------------------------------- /modules/ewxdevlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ewxdevlist.php -------------------------------------------------------------------------------- /modules/ewxnodelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ewxnodelist.php -------------------------------------------------------------------------------- /modules/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/export.php -------------------------------------------------------------------------------- /modules/exportcfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/exportcfg.php -------------------------------------------------------------------------------- /modules/genfake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/genfake.php -------------------------------------------------------------------------------- /modules/gusapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/gusapi.php -------------------------------------------------------------------------------- /modules/hostadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/hostadd.php -------------------------------------------------------------------------------- /modules/hostdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/hostdel.php -------------------------------------------------------------------------------- /modules/hostedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/hostedit.php -------------------------------------------------------------------------------- /modules/hostlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/hostlist.php -------------------------------------------------------------------------------- /modules/indicators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/indicators.php -------------------------------------------------------------------------------- /modules/invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoice.php -------------------------------------------------------------------------------- /modules/invoicearchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicearchive.php -------------------------------------------------------------------------------- /modules/invoicecancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicecancel.php -------------------------------------------------------------------------------- /modules/invoicedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicedel.php -------------------------------------------------------------------------------- /modules/invoiceedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoiceedit.php -------------------------------------------------------------------------------- /modules/invoiceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoiceinfo.php -------------------------------------------------------------------------------- /modules/invoicelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicelist.php -------------------------------------------------------------------------------- /modules/invoicenew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicenew.php -------------------------------------------------------------------------------- /modules/invoicenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicenote.php -------------------------------------------------------------------------------- /modules/invoicepaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicepaid.php -------------------------------------------------------------------------------- /modules/invoicereport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicereport.php -------------------------------------------------------------------------------- /modules/invoicesend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invoicesend.php -------------------------------------------------------------------------------- /modules/invprojectadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invprojectadd.php -------------------------------------------------------------------------------- /modules/invprojectdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invprojectdel.php -------------------------------------------------------------------------------- /modules/invprojectedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invprojectedit.php -------------------------------------------------------------------------------- /modules/invprojectlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/invprojectlist.php -------------------------------------------------------------------------------- /modules/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/logout.php -------------------------------------------------------------------------------- /modules/map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/map.inc.php -------------------------------------------------------------------------------- /modules/maplink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/maplink.php -------------------------------------------------------------------------------- /modules/messageadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/messageadd.php -------------------------------------------------------------------------------- /modules/messagecancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/messagecancel.php -------------------------------------------------------------------------------- /modules/messagedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/messagedel.php -------------------------------------------------------------------------------- /modules/messageinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/messageinfo.php -------------------------------------------------------------------------------- /modules/messagelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/messagelist.php -------------------------------------------------------------------------------- /modules/modinfo-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/modinfo-sample.php -------------------------------------------------------------------------------- /modules/netadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netadd.php -------------------------------------------------------------------------------- /modules/netcmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netcmp.php -------------------------------------------------------------------------------- /modules/netdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdel.php -------------------------------------------------------------------------------- /modules/netdevadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevadd.php -------------------------------------------------------------------------------- /modules/netdevdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevdel.php -------------------------------------------------------------------------------- /modules/netdevedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevedit.php -------------------------------------------------------------------------------- /modules/netdevinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevinfo.php -------------------------------------------------------------------------------- /modules/netdevlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevlist.php -------------------------------------------------------------------------------- /modules/netdevmac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevmac.php -------------------------------------------------------------------------------- /modules/netdevmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevmap.php -------------------------------------------------------------------------------- /modules/netdevmodels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevmodels.php -------------------------------------------------------------------------------- /modules/netdevprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevprint.php -------------------------------------------------------------------------------- /modules/netdevsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netdevsearch.php -------------------------------------------------------------------------------- /modules/netedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netedit.php -------------------------------------------------------------------------------- /modules/netinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netinfo.php -------------------------------------------------------------------------------- /modules/netlinkpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netlinkpoints.php -------------------------------------------------------------------------------- /modules/netlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netlist.php -------------------------------------------------------------------------------- /modules/netnodeadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netnodeadd.php -------------------------------------------------------------------------------- /modules/netnodeadddev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netnodeadddev.php -------------------------------------------------------------------------------- /modules/netnodedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netnodedel.php -------------------------------------------------------------------------------- /modules/netnodedeldev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netnodedeldev.php -------------------------------------------------------------------------------- /modules/netnodeedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netnodeedit.php -------------------------------------------------------------------------------- /modules/netnodeinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netnodeinfo.php -------------------------------------------------------------------------------- /modules/netnodelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netnodelist.php -------------------------------------------------------------------------------- /modules/netranges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netranges.php -------------------------------------------------------------------------------- /modules/netremap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netremap.php -------------------------------------------------------------------------------- /modules/netsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netsearch.php -------------------------------------------------------------------------------- /modules/netusage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/netusage.php -------------------------------------------------------------------------------- /modules/nodeadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodeadd.php -------------------------------------------------------------------------------- /modules/nodedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodedel.php -------------------------------------------------------------------------------- /modules/nodeedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodeedit.php -------------------------------------------------------------------------------- /modules/nodegroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodegroup.php -------------------------------------------------------------------------------- /modules/nodegroupadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodegroupadd.php -------------------------------------------------------------------------------- /modules/nodegroupdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodegroupdel.php -------------------------------------------------------------------------------- /modules/nodegroupedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodegroupedit.php -------------------------------------------------------------------------------- /modules/nodegroupinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodegroupinfo.php -------------------------------------------------------------------------------- /modules/nodegrouplist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodegrouplist.php -------------------------------------------------------------------------------- /modules/nodegroupmove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodegroupmove.php -------------------------------------------------------------------------------- /modules/nodeinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodeinfo.php -------------------------------------------------------------------------------- /modules/nodelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodelist.php -------------------------------------------------------------------------------- /modules/nodelistshort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodelistshort.php -------------------------------------------------------------------------------- /modules/nodeprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodeprint.php -------------------------------------------------------------------------------- /modules/nodescan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodescan.php -------------------------------------------------------------------------------- /modules/nodesearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodesearch.php -------------------------------------------------------------------------------- /modules/nodesession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodesession.php -------------------------------------------------------------------------------- /modules/nodeset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodeset.php -------------------------------------------------------------------------------- /modules/nodewarn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodewarn.php -------------------------------------------------------------------------------- /modules/nodexajax.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/nodexajax.inc.php -------------------------------------------------------------------------------- /modules/note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/note.php -------------------------------------------------------------------------------- /modules/noteadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/noteadd.php -------------------------------------------------------------------------------- /modules/notearchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/notearchive.php -------------------------------------------------------------------------------- /modules/notecancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/notecancel.php -------------------------------------------------------------------------------- /modules/notedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/notedel.php -------------------------------------------------------------------------------- /modules/noteedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/noteedit.php -------------------------------------------------------------------------------- /modules/notelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/notelist.php -------------------------------------------------------------------------------- /modules/notepaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/notepaid.php -------------------------------------------------------------------------------- /modules/noteunarchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/noteunarchive.php -------------------------------------------------------------------------------- /modules/number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/number.php -------------------------------------------------------------------------------- /modules/numberplanadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/numberplanadd.php -------------------------------------------------------------------------------- /modules/numberplandel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/numberplandel.php -------------------------------------------------------------------------------- /modules/numberplanedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/numberplanedit.php -------------------------------------------------------------------------------- /modules/numberplanlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/numberplanlist.php -------------------------------------------------------------------------------- /modules/paymentadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/paymentadd.php -------------------------------------------------------------------------------- /modules/paymentdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/paymentdel.php -------------------------------------------------------------------------------- /modules/paymentedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/paymentedit.php -------------------------------------------------------------------------------- /modules/paymentinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/paymentinfo.php -------------------------------------------------------------------------------- /modules/paymentlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/paymentlist.php -------------------------------------------------------------------------------- /modules/ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ping.php -------------------------------------------------------------------------------- /modules/pluginlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/pluginlist.php -------------------------------------------------------------------------------- /modules/print.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/print.php -------------------------------------------------------------------------------- /modules/promotionadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/promotionadd.php -------------------------------------------------------------------------------- /modules/promotionclone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/promotionclone.php -------------------------------------------------------------------------------- /modules/promotiondel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/promotiondel.php -------------------------------------------------------------------------------- /modules/promotionedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/promotionedit.php -------------------------------------------------------------------------------- /modules/promotioninfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/promotioninfo.php -------------------------------------------------------------------------------- /modules/promotionlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/promotionlist.php -------------------------------------------------------------------------------- /modules/promotionset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/promotionset.php -------------------------------------------------------------------------------- /modules/quicksearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/quicksearch.php -------------------------------------------------------------------------------- /modules/receipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/receipt.php -------------------------------------------------------------------------------- /modules/receiptadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/receiptadd.php -------------------------------------------------------------------------------- /modules/receiptadv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/receiptadv.php -------------------------------------------------------------------------------- /modules/receiptdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/receiptdel.php -------------------------------------------------------------------------------- /modules/receiptedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/receiptedit.php -------------------------------------------------------------------------------- /modules/receiptlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/receiptlist.php -------------------------------------------------------------------------------- /modules/recordadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/recordadd.php -------------------------------------------------------------------------------- /modules/recorddel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/recorddel.php -------------------------------------------------------------------------------- /modules/recordedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/recordedit.php -------------------------------------------------------------------------------- /modules/recordlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/recordlist.php -------------------------------------------------------------------------------- /modules/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/register.php -------------------------------------------------------------------------------- /modules/reload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/reload.php -------------------------------------------------------------------------------- /modules/routednetworks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/routednetworks.php -------------------------------------------------------------------------------- /modules/rtcategoryadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtcategoryadd.php -------------------------------------------------------------------------------- /modules/rtcategorydel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtcategorydel.php -------------------------------------------------------------------------------- /modules/rtcategoryedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtcategoryedit.php -------------------------------------------------------------------------------- /modules/rtcategoryinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtcategoryinfo.php -------------------------------------------------------------------------------- /modules/rtcategorylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtcategorylist.php -------------------------------------------------------------------------------- /modules/rtmessageadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtmessageadd.php -------------------------------------------------------------------------------- /modules/rtmessagedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtmessagedel.php -------------------------------------------------------------------------------- /modules/rtmessageview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtmessageview.php -------------------------------------------------------------------------------- /modules/rtnoteadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtnoteadd.php -------------------------------------------------------------------------------- /modules/rtprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtprint.php -------------------------------------------------------------------------------- /modules/rtqueueadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtqueueadd.php -------------------------------------------------------------------------------- /modules/rtqueuedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtqueuedel.php -------------------------------------------------------------------------------- /modules/rtqueueedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtqueueedit.php -------------------------------------------------------------------------------- /modules/rtqueueinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtqueueinfo.php -------------------------------------------------------------------------------- /modules/rtqueuelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtqueuelist.php -------------------------------------------------------------------------------- /modules/rtqueueview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtqueueview.php -------------------------------------------------------------------------------- /modules/rtremove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtremove.php -------------------------------------------------------------------------------- /modules/rtrestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtrestore.php -------------------------------------------------------------------------------- /modules/rtsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtsearch.php -------------------------------------------------------------------------------- /modules/rtticketadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtticketadd.php -------------------------------------------------------------------------------- /modules/rtticketdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtticketdel.php -------------------------------------------------------------------------------- /modules/rtticketedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtticketedit.php -------------------------------------------------------------------------------- /modules/rtticketinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtticketinfo.php -------------------------------------------------------------------------------- /modules/rtticketprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtticketprint.php -------------------------------------------------------------------------------- /modules/rtticketview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/rtticketview.php -------------------------------------------------------------------------------- /modules/stateadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/stateadd.php -------------------------------------------------------------------------------- /modules/statedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/statedel.php -------------------------------------------------------------------------------- /modules/stateedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/stateedit.php -------------------------------------------------------------------------------- /modules/statelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/statelist.php -------------------------------------------------------------------------------- /modules/tariffadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tariffadd.php -------------------------------------------------------------------------------- /modules/tariffdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tariffdel.php -------------------------------------------------------------------------------- /modules/tariffedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tariffedit.php -------------------------------------------------------------------------------- /modules/tariffinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tariffinfo.php -------------------------------------------------------------------------------- /modules/tarifflist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tarifflist.php -------------------------------------------------------------------------------- /modules/tariffmove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tariffmove.php -------------------------------------------------------------------------------- /modules/tarifftag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tarifftag.php -------------------------------------------------------------------------------- /modules/tarifftagadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tarifftagadd.php -------------------------------------------------------------------------------- /modules/tarifftagdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tarifftagdel.php -------------------------------------------------------------------------------- /modules/tarifftagedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tarifftagedit.php -------------------------------------------------------------------------------- /modules/tarifftaginfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tarifftaginfo.php -------------------------------------------------------------------------------- /modules/tarifftaglist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tarifftaglist.php -------------------------------------------------------------------------------- /modules/tarifftagmove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/tarifftagmove.php -------------------------------------------------------------------------------- /modules/taxrateadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/taxrateadd.php -------------------------------------------------------------------------------- /modules/taxratedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/taxratedel.php -------------------------------------------------------------------------------- /modules/taxrateedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/taxrateedit.php -------------------------------------------------------------------------------- /modules/taxratelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/taxratelist.php -------------------------------------------------------------------------------- /modules/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/template.php -------------------------------------------------------------------------------- /modules/traffic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/traffic.php -------------------------------------------------------------------------------- /modules/trafficgraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/trafficgraph.php -------------------------------------------------------------------------------- /modules/trafficprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/trafficprint.php -------------------------------------------------------------------------------- /modules/transferforms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/transferforms.php -------------------------------------------------------------------------------- /modules/ukeincome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ukeincome.php -------------------------------------------------------------------------------- /modules/ukepit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ukepit.php -------------------------------------------------------------------------------- /modules/ukesidusis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ukesidusis.php -------------------------------------------------------------------------------- /modules/ukesiis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/ukesiis.php -------------------------------------------------------------------------------- /modules/useraccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/useraccess.php -------------------------------------------------------------------------------- /modules/useradd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/useradd.php -------------------------------------------------------------------------------- /modules/userdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/userdel.php -------------------------------------------------------------------------------- /modules/useredit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/useredit.php -------------------------------------------------------------------------------- /modules/usergroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/usergroup.php -------------------------------------------------------------------------------- /modules/usergroupadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/usergroupadd.php -------------------------------------------------------------------------------- /modules/usergroupdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/usergroupdel.php -------------------------------------------------------------------------------- /modules/usergroupedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/usergroupedit.php -------------------------------------------------------------------------------- /modules/usergroupinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/usergroupinfo.php -------------------------------------------------------------------------------- /modules/usergrouplist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/usergrouplist.php -------------------------------------------------------------------------------- /modules/usergroupmove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/usergroupmove.php -------------------------------------------------------------------------------- /modules/userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/userinfo.php -------------------------------------------------------------------------------- /modules/userlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/userlist.php -------------------------------------------------------------------------------- /modules/userpanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/userpanel.php -------------------------------------------------------------------------------- /modules/userpasswd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/userpasswd.php -------------------------------------------------------------------------------- /modules/users/img/ip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/users/img/ip.gif -------------------------------------------------------------------------------- /modules/users/img/keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/users/img/keys.gif -------------------------------------------------------------------------------- /modules/users/img/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/users/img/mail.gif -------------------------------------------------------------------------------- /modules/users/img/pass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/users/img/pass.gif -------------------------------------------------------------------------------- /modules/users/img/time.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/users/img/time.gif -------------------------------------------------------------------------------- /modules/users/modinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/users/modinfo.php -------------------------------------------------------------------------------- /modules/userswitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/userswitch.php -------------------------------------------------------------------------------- /modules/vlanlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/vlanlist.php -------------------------------------------------------------------------------- /modules/voipaccountadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/voipaccountadd.php -------------------------------------------------------------------------------- /modules/voipaccountdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/voipaccountdel.php -------------------------------------------------------------------------------- /modules/voipaccountset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/voipaccountset.php -------------------------------------------------------------------------------- /modules/voippricelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/voippricelist.php -------------------------------------------------------------------------------- /modules/voipprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/voipprint.php -------------------------------------------------------------------------------- /modules/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/welcome.php -------------------------------------------------------------------------------- /modules/zipcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/modules/zipcode.php -------------------------------------------------------------------------------- /phpcs2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/phpcs2.xml -------------------------------------------------------------------------------- /phpcs3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/phpcs3.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/phpunit.xml -------------------------------------------------------------------------------- /plugins/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /sample/crontab-entry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/crontab-entry -------------------------------------------------------------------------------- /sample/lms-full.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/lms-full.ini -------------------------------------------------------------------------------- /sample/lms-mgc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/lms-mgc.ini -------------------------------------------------------------------------------- /sample/lms.apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/lms.apache.conf -------------------------------------------------------------------------------- /sample/lms.apache24.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/lms.apache24.conf -------------------------------------------------------------------------------- /sample/lms.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/lms.ini -------------------------------------------------------------------------------- /sample/lms.nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/lms.nginx.conf -------------------------------------------------------------------------------- /sample/mailtemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/mailtemplate.txt -------------------------------------------------------------------------------- /sample/mailtemplate_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/mailtemplate_en.txt -------------------------------------------------------------------------------- /sample/radius-mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/radius-mysql.conf -------------------------------------------------------------------------------- /sample/radius-pgsql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/radius-pgsql.conf -------------------------------------------------------------------------------- /sample/rc.lmsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/rc.lmsd -------------------------------------------------------------------------------- /sample/rc.reminder_1st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/rc.reminder_1st -------------------------------------------------------------------------------- /sample/smstemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/smstemplate.txt -------------------------------------------------------------------------------- /sample/tekst_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/tekst_1.txt -------------------------------------------------------------------------------- /sample/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/test.txt -------------------------------------------------------------------------------- /sample/traffic_ipt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/sample/traffic_ipt.pl -------------------------------------------------------------------------------- /storage/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /storage/customercalls/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/messagetemplates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/promotions/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/promotionschemas/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/rt/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/voipcalls/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/layout-without-footer.html: -------------------------------------------------------------------------------- 1 | header.html -------------------------------------------------------------------------------- /templates/default/list.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /templates/default/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/templates/default/map.js -------------------------------------------------------------------------------- /templates_c/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/templates_c/.htaccess -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/lib/LMSDBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/tests/lib/LMSDBTest.php -------------------------------------------------------------------------------- /userpanel/cache: -------------------------------------------------------------------------------- 1 | ../cache -------------------------------------------------------------------------------- /userpanel/css: -------------------------------------------------------------------------------- 1 | ../css -------------------------------------------------------------------------------- /userpanel/img: -------------------------------------------------------------------------------- 1 | ../img -------------------------------------------------------------------------------- /userpanel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/userpanel/index.php -------------------------------------------------------------------------------- /userpanel/js: -------------------------------------------------------------------------------- 1 | ../js -------------------------------------------------------------------------------- /userpanel/lib/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | -------------------------------------------------------------------------------- /userpanel/lib/LMS.menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilek/lms/HEAD/userpanel/lib/LMS.menu.php -------------------------------------------------------------------------------- /userpanel/style/bclean/.gitignore: -------------------------------------------------------------------------------- 1 | assets/* 2 | vendor/* 3 | composer.lock 4 | -------------------------------------------------------------------------------- /userpanel/style/bclean/box.html: -------------------------------------------------------------------------------- 1 | {$boxcontent} 2 | -------------------------------------------------------------------------------- /userpanel/style/bclean/fontawesome: -------------------------------------------------------------------------------- 1 | ../../css/fontawesome -------------------------------------------------------------------------------- /userpanel/style/default/fontawesome: -------------------------------------------------------------------------------- 1 | ../../css/fontawesome -------------------------------------------------------------------------------- /userpanel/style/old/fontawesome: -------------------------------------------------------------------------------- 1 | ../../css/fontawesome -------------------------------------------------------------------------------- /userpanel/templates/jquery.html: -------------------------------------------------------------------------------- 1 | ../../templates/default/jquery.html -------------------------------------------------------------------------------- /userpanel/templates_c/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied 2 | --------------------------------------------------------------------------------