Example #1
0
 public function init()
 {
     GlobalMas::$host = self::$host;
     GlobalMas::$pass = self::$pass;
     GlobalMas::$user = self::$user;
     GlobalMas::$database = self::$database;
     //UploadHandler::$rootFilesPath = "/upload/generated_files/";
 }
Example #2
0
 public static function init()
 {
     GlobalMas::$host = 'mydatabase.ctla99hip1d5.us-west-2.rds.amazonaws.com:3306';
     GlobalMas::$user = '******';
     GlobalMas::$pass = '******';
     GlobalMas::$database = "compiler";
     //------------------------------------------------------
     ProjectGlobal::$compileObj = array("compile" => array(array("save_path" => "", "compileType" => "inject", "outputContent" => array("saveas" => "index.html"), "imagesProp" => array("base64" => true, "fileProp" => array("fileTypeProp" => array("png" => array("quality" => 100), "jpeg" => array("quality" => 90)))), "files" => array("data.js" => array("base64" => false)), "getIncluded" => false, "minify" => true)));
 }
Example #3
0
 public static function init()
 {
     //GlobalMas::$host = 'mydatabase.ctla99hip1d5.us-west-2.rds.amazonaws.com:3306';
     //GlobalMas::$user = '******';
     //GlobalMas::$pass = '******';
     //GlobalMas::$database = "compiler";
     GlobalMas::$host = '127.0.0.1:9306';
     //GlobalMas::$user = '******';
     //GlobalMas::$pass = '******';
     //GlobalMas::$database = "compiler";
     ProjectGlobal::$compileObj = array("compile" => array(array("save_path" => "seperate/", "removeHTMLComments" => false, "outputContent" => array("saveas" => "index.html"), "imagesProp" => array("fileProp" => array("fileTypeProp" => array("png" => array("quality" => 100), "jpeg" => array("quality" => 100))), "save_dir" => "project/images/"), "getIncluded" => false, "minify" => false, "cssProp" => array("matchProp" => array("applyToFilesIn" => array("project/css/" => array("save_dir" => "project/css/"), "project/js/" => array("save_dir" => "project/css/"))), "save_dir" => "global/css/"), "tmplProp" => array("compileType" => "inject", "minify" => false)), array("save_path" => "single/", "compileType" => "inject", "outputContent" => array("saveas" => "index.html"), "imagesProp" => array("base64" => true, "save_dir" => "", "fileProp" => array("fileTypeProp" => array("png" => array("quality" => 1), "jpeg" => array("quality" => 40)))), "files" => array("data.js" => array("base64" => false)), "getIncluded" => false, "minify" => true)));
 }
Example #4
0
 public static function init()
 {
     GlobalMas::$host = 'mydatabase.ctla99hip1d5.us-west-2.rds.amazonaws.com:3306';
     GlobalMas::$user = '******';
     GlobalMas::$pass = '******';
     GlobalMas::$database = "compiler";
     GlobalMas::$filesPath_relative = "/Modules/generated_files/compiler/";
     GlobalMas::$filesPath_absolute = $_SERVER["DOCUMENT_ROOT"] . GlobalMas::$filesPath_relative;
     GlobalMas::$filesPath_web = GenFun::get_full_url(GlobalMas::$filesPath_absolute) . "/";
     //------------------------------------------------------
     ProjectGlobal::$compileObj = array("compile" => array(array("save_path" => "", "compileType" => "inject", "outputContent" => array("saveas" => "index.html"), "imagesProp" => array("base64" => true, "fileProp" => array("fileTypeProp" => array("png" => array("quality" => 100), "jpeg" => array("quality" => 90)))), "files" => array("data.js" => array("base64" => false)), "getIncluded" => false, "minify" => true)));
 }
Example #5
0
 public static function init()
 {
     Compiler::init(array("css" => "min_single", "js" => "min_single", "getServices" => array("except" => Import::getImportPath() . "service.php"), "global" => array("copy" => array(Import::$uber_src_path . "service.php", Import::getImportPath() . "index.php"), "getImages" => true, "code" => array("tmpl" => array("replace" => array("replaceSrc" => false, "\${images}" => Import::$uber_src_path . "/global/images/")))), "compile" => array(array("id" => "min_single", "minify" => true, "copy" => array(), "code" => array("css" => array("singleFile" => true, "path" => "global/css/"), "js" => array("singleFile" => true, "path" => "global/js/"))), array("id" => "min_multi", "minify" => true, "code" => array("css" => array("singleFile" => false, "path" => "global/css/"), "js" => array("singleFile" => false, "path" => "global/js/"))), array("id" => "unmin", "code" => array("css" => array("singleFile" => false, "path" => "global/css/"), "js" => array("singleFile" => false, "path" => "global/js/"))), array("id" => "unmin_raw", "raw" => true))));
     //------------------------------------------------
     GlobalMas::$host = self::$host;
     GlobalMas::$pass = self::$pass;
     GlobalMas::$user = self::$user;
     GlobalMas::$database = self::$database;
     UploadHandler::$projectFilesPath = ProjectGlobal::$projectFilesPath;
     //UploadHandler::$rootFilesPath = "/upload/generated_files/";
     self::$filesLocalPath = $_SERVER['DOCUMENT_ROOT'] . "/" . UploadHandler::$rootFilesPath . self::$projectFilesPath;
     self::$filesPath = GenFun::get_full_url(self::$filesLocalPath);
 }