"Variable Value" will replace all instances of $variable_name with 'Variable Value' $bigtree["config"]["css"]["vars"] = array(); // Flag for JS minification $bigtree["config"]["js"]["minify"] = false; // Array containing all JS files to minify; key = name of compiled file // example: $bigtree["config"]["js"]["site"] compiles all JS files into "site.js" $bigtree["config"]["js"]["files"]["site"] = array(); // Array containing variables to be replaced in compiled JS files // example: "variable_name" => "Variable Value" will replace all instances of $variable_name with 'Variable Value' $bigtree["config"]["js"]["vars"] = array(); // Admin Settings $bigtree["config"]["html_editor"] = array("name" => "TinyMCE 4","src" => "tinymce4/tinymce.min.js"); // WYSIWYG editor to use $bigtree["config"]["password_depth"] = 8; // The amount of work for the password hashing. Higher is more secure but more costly on your CPU. $bigtree["config"]["admin_css"] = array(); // Additional CSS Files For the Admin to load, relative to /custom/admin/css/ $bigtree["config"]["admin_js"] = array(); // Additional JavaScript Files For the Admin to load, relative to /custom/admin/js/ $bigtree["config"]["ignore_admin_updates"] = false; // Set to true to disable pinging bigtreecms.org for version updates $bigtree["config"]["default_gravatar"] = "https://www.bigtreecms.org/images/bigtree-gravatar.png"; // Default gravatar to load for users without an account // Default Image Quality Presets $bigtree["config"]["image_quality"] = 90; // 0-100, size increases dramatically after 90 $bigtree["config"]["retina_image_quality"] = 25; // 0-100, size increases dramatically after 90 $bigtree["config"]["image_force_jpeg"] = false; // Set to true to make images uploaded as PNG save as JPG // Placeholder image defaults - add your own key to the "placeholder" array to create more placeholder image templates. $bigtree["config"]["placeholder"]["default"] = array( "background_color" => "CCCCCC", "text_color" => "666666", "image" => false, "text" => false ); // Custom Output Filter Function $bigtree["config"]["output_filter"] = false; // Encryption key for encrypted settings $bigtree["config"]["settings_key"] = "[settings_key]"; // Version Ping - Change to true to disable reporting of your current version to the BigTree developers $bigtree["config"]["disable_ping"] = false; // Base classes for BigTree. If you want to extend / overwrite core features of the CMS, change these to your new class names // Set BIGTREE_CUSTOM_BASE_CLASS_PATH to the directory path (relative to /site/) of the file that will extend BigTreeCMS // Set BIGTREE_CUSTOM_ADMIN_CLASS_PATH to the directory path (relative to /site/) of the file that will extend BigTreeAdmin define("BIGTREE_CUSTOM_BASE_CLASS",false); define("BIGTREE_CUSTOM_ADMIN_CLASS",false); define("BIGTREE_CUSTOM_BASE_CLASS_PATH",false); define("BIGTREE_CUSTOM_ADMIN_CLASS_PATH",false); ?>