├── .gitignore ├── ApacheRewrite ├── README.md ├── assets ├── audio │ ├── bell.mp3 │ └── bell.ogg ├── css │ ├── font-face.css │ ├── normalize.css │ ├── style.css │ └── styleNew.css ├── font │ └── FreeSans.ttf ├── img │ ├── button_hover.png │ ├── password-icon.png │ └── user-icon.png └── js │ ├── adminDeviceEdit.js │ ├── adminStats.js │ ├── animationError.js │ ├── displayDesk.js │ ├── displayMain.js │ ├── login.js │ ├── opPage.js │ ├── recordRemove.js │ ├── topicalDomainList.js │ ├── vendor │ └── Chart.min.js │ └── web │ └── tdSelection.js ├── direct ├── displayDeskPolling.php ├── displayFunctions.php └── displayMainPolling.php ├── includes ├── AppPushSender.php ├── Autoloader.php ├── Database.php ├── DefaultSettings.php ├── EditableConf.php ├── GeneralFunctions.php ├── JobQueue.php ├── LocalSettingsGenerator.php ├── PageRouter.php ├── Session.php ├── Setup.php ├── SmsSender.php ├── ajax │ ├── ActivateTopicalDomain.php │ └── RemoveRecord.php ├── app │ ├── AppAction.php │ ├── AppCancelTicket.php │ ├── AppDigitalize.php │ ├── AppGetDesksStatus.php │ ├── AppGetOfficeListByCity.php │ ├── AppGetOfficeListByGps.php │ ├── AppGetQueueStatus.php │ ├── AppGetTicketStatus.php │ ├── AppNewTicket.php │ ├── AppNoSuchAction.php │ ├── AppUpdateNotice.php │ └── exceptions │ │ ├── BadOwnershipException.php │ │ ├── BannedDeviceException.php │ │ ├── InvalidOfficeCodeException.php │ │ ├── InvalidParamException.php │ │ ├── InvalidTicketException.php │ │ └── InvalidTokenException.php ├── entities │ ├── Ban.php │ ├── DatabaseTable.php │ ├── DatabaseTableWithId.php │ ├── Desk.php │ ├── Device.php │ ├── DisplayMain.php │ ├── Office.php │ ├── Operator.php │ ├── Ticket.php │ ├── TicketStats.php │ ├── TopicalDomain.php │ └── sql │ │ ├── fastqueue.sql │ │ └── fixtureTicketStats.sql ├── output │ ├── ErrorPageOutput.php │ ├── JsonOutput.php │ ├── Output.php │ ├── RedirectOutput.php │ └── WebPageOutput.php ├── pages │ ├── AdminDeskEdit.php │ ├── AdminDeskList.php │ ├── AdminDeviceEdit.php │ ├── AdminDeviceList.php │ ├── AdminOperatorEdit.php │ ├── AdminOperatorList.php │ ├── AdminPage.php │ ├── AdminSettings.php │ ├── AdminStats.php │ ├── AdminTopicalDomainEdit.php │ ├── AdminTopicalDomainList.php │ ├── ApiPage.php │ ├── LoginPage.php │ ├── LogoutPage.php │ ├── OperatorPage.php │ ├── Page.php │ ├── device │ │ ├── DeviceDisplayDesk.php │ │ ├── DeviceDisplayMain.php │ │ └── DeviceMainPage.php │ ├── exceptions │ │ └── UnknownDeskException.php │ ├── globalServer │ │ ├── GsHomePage.php │ │ └── GsSearch.php │ └── web │ │ ├── WebCheckPhone.php │ │ ├── WebComplete.php │ │ ├── WebInsertPhone.php │ │ └── WebTdSelection.php ├── script │ ├── AutoLogoutOperator.php │ └── TruncateTables.php └── totem │ ├── GetOfficeInfo.php │ ├── GetTopicalDomains.php │ └── ReserveTicket.php └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/.gitignore -------------------------------------------------------------------------------- /ApacheRewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/ApacheRewrite -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/README.md -------------------------------------------------------------------------------- /assets/audio/bell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/audio/bell.mp3 -------------------------------------------------------------------------------- /assets/audio/bell.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/audio/bell.ogg -------------------------------------------------------------------------------- /assets/css/font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/css/font-face.css -------------------------------------------------------------------------------- /assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/css/normalize.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/css/styleNew.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/css/styleNew.css -------------------------------------------------------------------------------- /assets/font/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/font/FreeSans.ttf -------------------------------------------------------------------------------- /assets/img/button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/img/button_hover.png -------------------------------------------------------------------------------- /assets/img/password-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/img/password-icon.png -------------------------------------------------------------------------------- /assets/img/user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/img/user-icon.png -------------------------------------------------------------------------------- /assets/js/adminDeviceEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/adminDeviceEdit.js -------------------------------------------------------------------------------- /assets/js/adminStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/adminStats.js -------------------------------------------------------------------------------- /assets/js/animationError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/animationError.js -------------------------------------------------------------------------------- /assets/js/displayDesk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/displayDesk.js -------------------------------------------------------------------------------- /assets/js/displayMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/displayMain.js -------------------------------------------------------------------------------- /assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/login.js -------------------------------------------------------------------------------- /assets/js/opPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/opPage.js -------------------------------------------------------------------------------- /assets/js/recordRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/recordRemove.js -------------------------------------------------------------------------------- /assets/js/topicalDomainList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/topicalDomainList.js -------------------------------------------------------------------------------- /assets/js/vendor/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/vendor/Chart.min.js -------------------------------------------------------------------------------- /assets/js/web/tdSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/assets/js/web/tdSelection.js -------------------------------------------------------------------------------- /direct/displayDeskPolling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/direct/displayDeskPolling.php -------------------------------------------------------------------------------- /direct/displayFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/direct/displayFunctions.php -------------------------------------------------------------------------------- /direct/displayMainPolling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/direct/displayMainPolling.php -------------------------------------------------------------------------------- /includes/AppPushSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/AppPushSender.php -------------------------------------------------------------------------------- /includes/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/Autoloader.php -------------------------------------------------------------------------------- /includes/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/Database.php -------------------------------------------------------------------------------- /includes/DefaultSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/DefaultSettings.php -------------------------------------------------------------------------------- /includes/EditableConf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/EditableConf.php -------------------------------------------------------------------------------- /includes/GeneralFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/GeneralFunctions.php -------------------------------------------------------------------------------- /includes/JobQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/JobQueue.php -------------------------------------------------------------------------------- /includes/LocalSettingsGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/LocalSettingsGenerator.php -------------------------------------------------------------------------------- /includes/PageRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/PageRouter.php -------------------------------------------------------------------------------- /includes/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/Session.php -------------------------------------------------------------------------------- /includes/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/Setup.php -------------------------------------------------------------------------------- /includes/SmsSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/SmsSender.php -------------------------------------------------------------------------------- /includes/ajax/ActivateTopicalDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/ajax/ActivateTopicalDomain.php -------------------------------------------------------------------------------- /includes/ajax/RemoveRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/ajax/RemoveRecord.php -------------------------------------------------------------------------------- /includes/app/AppAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppAction.php -------------------------------------------------------------------------------- /includes/app/AppCancelTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppCancelTicket.php -------------------------------------------------------------------------------- /includes/app/AppDigitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppDigitalize.php -------------------------------------------------------------------------------- /includes/app/AppGetDesksStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppGetDesksStatus.php -------------------------------------------------------------------------------- /includes/app/AppGetOfficeListByCity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppGetOfficeListByCity.php -------------------------------------------------------------------------------- /includes/app/AppGetOfficeListByGps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppGetOfficeListByGps.php -------------------------------------------------------------------------------- /includes/app/AppGetQueueStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppGetQueueStatus.php -------------------------------------------------------------------------------- /includes/app/AppGetTicketStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppGetTicketStatus.php -------------------------------------------------------------------------------- /includes/app/AppNewTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppNewTicket.php -------------------------------------------------------------------------------- /includes/app/AppNoSuchAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppNoSuchAction.php -------------------------------------------------------------------------------- /includes/app/AppUpdateNotice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/AppUpdateNotice.php -------------------------------------------------------------------------------- /includes/app/exceptions/BadOwnershipException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/exceptions/BadOwnershipException.php -------------------------------------------------------------------------------- /includes/app/exceptions/BannedDeviceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/exceptions/BannedDeviceException.php -------------------------------------------------------------------------------- /includes/app/exceptions/InvalidOfficeCodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/exceptions/InvalidOfficeCodeException.php -------------------------------------------------------------------------------- /includes/app/exceptions/InvalidParamException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/exceptions/InvalidParamException.php -------------------------------------------------------------------------------- /includes/app/exceptions/InvalidTicketException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/exceptions/InvalidTicketException.php -------------------------------------------------------------------------------- /includes/app/exceptions/InvalidTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/app/exceptions/InvalidTokenException.php -------------------------------------------------------------------------------- /includes/entities/Ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/Ban.php -------------------------------------------------------------------------------- /includes/entities/DatabaseTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/DatabaseTable.php -------------------------------------------------------------------------------- /includes/entities/DatabaseTableWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/DatabaseTableWithId.php -------------------------------------------------------------------------------- /includes/entities/Desk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/Desk.php -------------------------------------------------------------------------------- /includes/entities/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/Device.php -------------------------------------------------------------------------------- /includes/entities/DisplayMain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/DisplayMain.php -------------------------------------------------------------------------------- /includes/entities/Office.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/Office.php -------------------------------------------------------------------------------- /includes/entities/Operator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/Operator.php -------------------------------------------------------------------------------- /includes/entities/Ticket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/Ticket.php -------------------------------------------------------------------------------- /includes/entities/TicketStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/TicketStats.php -------------------------------------------------------------------------------- /includes/entities/TopicalDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/TopicalDomain.php -------------------------------------------------------------------------------- /includes/entities/sql/fastqueue.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/sql/fastqueue.sql -------------------------------------------------------------------------------- /includes/entities/sql/fixtureTicketStats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/entities/sql/fixtureTicketStats.sql -------------------------------------------------------------------------------- /includes/output/ErrorPageOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/output/ErrorPageOutput.php -------------------------------------------------------------------------------- /includes/output/JsonOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/output/JsonOutput.php -------------------------------------------------------------------------------- /includes/output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/output/Output.php -------------------------------------------------------------------------------- /includes/output/RedirectOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/output/RedirectOutput.php -------------------------------------------------------------------------------- /includes/output/WebPageOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/output/WebPageOutput.php -------------------------------------------------------------------------------- /includes/pages/AdminDeskEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminDeskEdit.php -------------------------------------------------------------------------------- /includes/pages/AdminDeskList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminDeskList.php -------------------------------------------------------------------------------- /includes/pages/AdminDeviceEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminDeviceEdit.php -------------------------------------------------------------------------------- /includes/pages/AdminDeviceList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminDeviceList.php -------------------------------------------------------------------------------- /includes/pages/AdminOperatorEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminOperatorEdit.php -------------------------------------------------------------------------------- /includes/pages/AdminOperatorList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminOperatorList.php -------------------------------------------------------------------------------- /includes/pages/AdminPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminPage.php -------------------------------------------------------------------------------- /includes/pages/AdminSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminSettings.php -------------------------------------------------------------------------------- /includes/pages/AdminStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminStats.php -------------------------------------------------------------------------------- /includes/pages/AdminTopicalDomainEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminTopicalDomainEdit.php -------------------------------------------------------------------------------- /includes/pages/AdminTopicalDomainList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/AdminTopicalDomainList.php -------------------------------------------------------------------------------- /includes/pages/ApiPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/ApiPage.php -------------------------------------------------------------------------------- /includes/pages/LoginPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/LoginPage.php -------------------------------------------------------------------------------- /includes/pages/LogoutPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/LogoutPage.php -------------------------------------------------------------------------------- /includes/pages/OperatorPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/OperatorPage.php -------------------------------------------------------------------------------- /includes/pages/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/Page.php -------------------------------------------------------------------------------- /includes/pages/device/DeviceDisplayDesk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/device/DeviceDisplayDesk.php -------------------------------------------------------------------------------- /includes/pages/device/DeviceDisplayMain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/device/DeviceDisplayMain.php -------------------------------------------------------------------------------- /includes/pages/device/DeviceMainPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/device/DeviceMainPage.php -------------------------------------------------------------------------------- /includes/pages/exceptions/UnknownDeskException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/exceptions/UnknownDeskException.php -------------------------------------------------------------------------------- /includes/pages/globalServer/GsHomePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/globalServer/GsHomePage.php -------------------------------------------------------------------------------- /includes/pages/globalServer/GsSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/globalServer/GsSearch.php -------------------------------------------------------------------------------- /includes/pages/web/WebCheckPhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/web/WebCheckPhone.php -------------------------------------------------------------------------------- /includes/pages/web/WebComplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/web/WebComplete.php -------------------------------------------------------------------------------- /includes/pages/web/WebInsertPhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/web/WebInsertPhone.php -------------------------------------------------------------------------------- /includes/pages/web/WebTdSelection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/pages/web/WebTdSelection.php -------------------------------------------------------------------------------- /includes/script/AutoLogoutOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/script/AutoLogoutOperator.php -------------------------------------------------------------------------------- /includes/script/TruncateTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/script/TruncateTables.php -------------------------------------------------------------------------------- /includes/totem/GetOfficeInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/totem/GetOfficeInfo.php -------------------------------------------------------------------------------- /includes/totem/GetTopicalDomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/totem/GetTopicalDomains.php -------------------------------------------------------------------------------- /includes/totem/ReserveTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/includes/totem/ReserveTicket.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyKossi/queueManage/HEAD/index.php --------------------------------------------------------------------------------