mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 15:24:00 +01:00
versionNo, codeMirrorDir & cMThisVer now moved to settings.php These 3 settings are prefixed to array after initiated This means this file doesn't need to get updated each time there is a version no change. This in turn means that user settings aren't overwritten each time a release made and pulled from Github root setting is now the relative path from the doc root only, not prefixed by it (ie, full path) ZipIt plugin removed until I figure out the issues with it after changing settings via settings screen
24 lines
794 B
PHP
24 lines
794 B
PHP
<?php
|
|
$ICEcoder = array(
|
|
"root" => "",
|
|
"tabsIndent" => true,
|
|
"checkUpdates" => false,
|
|
"openLastFiles" => true,
|
|
"findFilesExclude" => array("_coder",".doc",".gif",".jpg",".jpeg",".pdf",".png",".swf",".xml",".zip"),
|
|
"codeAssist" => true,
|
|
"visibleTabs" => false,
|
|
"lockedNav" => true,
|
|
"accountPassword" => "",
|
|
"restrictedFiles" => array("wp-",".php",".rb",".sql"),
|
|
"bannedFiles" => array("_coder","wp-",".exe"),
|
|
"allowedIPs" => array("*"),
|
|
"plugins" => array(
|
|
array("Database Admin","images/database.png","margin-top: 3px","plugins/adminer/adminer-3.3.3-mysql-en.php","_blank",""),
|
|
array("Batch Image Processor","images/images.png","margin-top: 5px","http://birme.net","_blank",""),
|
|
),
|
|
"theme" => "default",
|
|
"tabWidth" => 4,
|
|
"previousFiles" => "",
|
|
"last10Files" => ""
|
|
);
|
|
?>
|