"OdenseTrack" is a school assignment/project from AspIT https://aspit.dfine.net/odensetrack
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829
  1. <?php
  2. class Config {
  3. /** Site Settings */
  4. public static $sys_url = "https://aspit.dfine.net/odensetrack/"; //Website URL WITH tailing slash
  5. public static $debug = false; // Public debug flag
  6. public static $closed = false; // If set to true, the site wont load. Useful when not using login.
  7. /** MySQL settings */
  8. public static $mysql_host = "";
  9. public static $mysql_user = "";
  10. public static $mysql_pass = "";
  11. public static $mysql_db = "";
  12. /** Extended database settings */
  13. public static $db_tableusers = "users";
  14. /** Upload settings */
  15. public static $file_path = "img/uploads/";
  16. public static $file_types = ['jpeg', 'jpg', 'png', 'svg', 'gif', 'pdf', 'doc', 'docx', 'xlsx', 'xls', 'ppt', 'txt', 'rtf'];
  17. public static $file_size = 5000000;
  18. /** News Categories */
  19. public static $newscat = ['Ingen kategori', 'Nyhed', 'Breaking', 'Blog'];
  20. }