Removed config.php from repo

This commit is contained in:
Frank Schubert
2021-07-01 20:57:45 +02:00
parent 72c67c9d35
commit fc9064ea91

View File

@@ -1,71 +0,0 @@
<?php
require_once(realpath(dirname(__FILE__)."/internals.php"));
/*
* Essentials
*/
define("MFAPPNAME","thetool"); // used for cookie and logfile names
define("MFBASECONTROLLER_INIT_INCLUDE_FILE", APPDIR."Init/Init.php");
// database configuration
define("FRONKDB_DBHOST","localhost");
define("FRONKDB_DBUSER","root");
define("FRONKDB_DBPASS","fubak");
define("FRONKDB_DBNAME","thetool");
// Logging configuration
define("LOGTYPE","file"); // can be one of file, mysql, syslog; defaults to "file"
define("LOGFILENAME",BASEDIR."/var/log/".MFAPPNAME.".log");
/*
* Application-specific settings
*/
define("TT_ROLES", ['systemowner','netowner','salespartner','pipeworker','lineworker','pipeplanner','lineplanner','netoperator','support','billing','employee','customer','supplier','contact']);
define("TT_NETWORK_ROLES", ['netowner','salespartner','pipeworker','lineworker','pipeplanner','lineplanner','netoperator']);
// Upload settings
define('MFUPLOAD_FILE_SAVE_PATH',BASEDIR.'/files'); // folder where files will be stored
define('MFUPLOAD_ALLOWED_EXTENSIONS', 'jpg|jpeg|gif|png|pdf|doc.?|xls.?'); // allowed file extensions in regex format
define('MFUPLOAD_ALLOWED_EXTENSIONS_STR',"jpg, png, gif, pdf, doc, xls");
define('MFUPLOAD_FILE_MAX_SIZE',8192*1024); // Max filesize (8 MB)
define('MFUPLOAD_DIRMODE',0777);
define('MFUPLOAD_FILEMODE',0666);
define('MFLOCALE_TIME', "de_AT.UTF-8");
define('MFLOCALE_MONETARY', "de_AT.UTF-8");
define('MFLOCALE_NUMERIC', "de_AT.UTF-8");
/*
* Maintainer / developer settings
*/
define("MFUSEFANCYURLS",true); // to use urls in folder style
// If your database field names start with a prefix (like Customer_id), set this to true.
// Required when extending from mfBase classes (mfBaseController and mfBaseModel).
define("MFMODEL_USEFIELDPREFIX",false);
define("TESTMODE",false);
define("LAYOUT_DEFAULTPACKAGE","default"); // mfLayout looks for templates in this folder
// the default Controller to call. Without an action, calls index action.
define("DEFAULT_ROUTE","Dashboard");
// use mfLogin?
define("MFUSELOGIN",true);
define("MFSESSION",true);
// The name of your users table. Required by stock mfUser and mfLoginController
define("MFUSERTABLE","Worker");
// use mfMenu?
define("MFUSEMENU",false);
// The name of your menu table. Required by mfMenu
define("MFMENUTABLE","mfMenu");
// change this to wkhtmltopdf-amd64 if your system supports 64 bit binaries
define("WKHTMLTOPDF_BIN",LIBDIR."/mvcfronk/mfWkhtmltopdf/bin/wkhtmltopdf-i386");
define("WKHTMLTOPDF_ARGS",'-q -s A4 --footer-center [page]/[topage]');
// where to save PDF files
define("PDFOUTPUTPATH",BASEDIR."/var/temp");
define("GIT_BIN_PATH", "/usr/bin/git");