[ "url" => "/accounthub", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => SITE_TITLE ], "qwikclock" => [ "url" => "/qwikclock", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "QwikClock", "station_features" => [ "qwikclock_punchinout", "qwikclock_myshifts", "qwikclock_jobs" ], "card" => [ "color" => "blue", "string" => "Punch in and check work schedule" ] ], "binstack" => [ "url" => "/binstack", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "BinStack", "card" => [ "color" => "green", "string" => "Manage physical items" ] ], "newspen" => [ "url" => "/newspen", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "NewsPen", "card" => [ "color" => "purple", "string" => "Create and publish e-newsletters" ] ], "managepanel" => [ "url" => "/managepanel", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "ManagePanel", "card" => [ "color" => "brown", "string" => "Manage users, permissions, and security" ] ], "nickelbox" => [ "url" => "/nickelbox", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "NickelBox", "card" => [ "color" => "light-green", "text" => "dark", "string" => "Checkout customers and manage online orders" ] ], "sitewriter" => [ "url" => "/sitewriter", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "SiteWriter", "card" => [ "color" => "light-blue", "string" => "Build websites and manage contact form messages" ] ], "taskfloor" => [ "url" => "/taskfloor", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "TaskFloor", "station_features" => [ "taskfloor_viewtasks", "taskfloor_viewmessages" ], "card" => [ "color" => "blue-grey", "string" => "Track jobs and assigned tasks" ] ], ]); // Show or hide the Station PIN setup option. define("STATION_KIOSK", true); // Used for notification timestamp display. define("DATETIME_FORMAT", "M j, g:i a"); define("TIME_FORMAT", "g:i"); // Email settings for receiving admin alerts. define("USE_SMTP", TRUE); // if FALSE, will use PHP's mail() instead define("ADMIN_EMAIL", ""); define("FROM_EMAIL", "alert-noreply@apps.biz.netsyms.com"); define("SMTP_HOST", ""); define("SMTP_AUTH", true); define("SMTP_PORT", 587); define("SMTP_SECURE", 'tls'); define("SMTP_USER", ""); define("SMTP_PASS", ""); define("SMTP_ALLOW_INVALID_CERTIFICATE", TRUE); // Minimum length for new passwords // The system checks new passwords against the 500 worst passwords and rejects // any matches. // If you want to have additional password requirements, go edit action.php. // However, all that does is encourage people to use the infamous // "post-it password manager". See also https://xkcd.com/936/ and // http://stackoverflow.com/a/34166252 for reasons why forcing passwords // like CaPs45$% is not actually a great idea. // Encourage users to use 2-factor auth whenever possible. define("MIN_PASSWORD_LENGTH", 8); // Maximum number of rows to get in a query. define("QUERY_LIMIT", 1000); define("FOOTER_TEXT", ""); define("COPYRIGHT_NAME", "Netsyms Technologies"); //////////////////////////////////////////////////////////////