mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 07:13:59 +01:00
To make things simpler, everything is now just called password rather than accountPassword etc settings.php also now gone back to checking for the existance of the $_POST password rather than looking for a submit button named 'set password'. This obviously wouldn't work as that's not the name of the button on the settings screen, it's 'update'
34 lines
1.8 KiB
PHP
34 lines
1.8 KiB
PHP
<?php
|
|
$ICEcoder = array(
|
|
"root" => "",
|
|
"checkUpdates" => true,
|
|
"openLastFiles" => true,
|
|
"findFilesExclude" => array("_coder","ICEcoder",".doc",".gif",".jpg",".jpeg",".pdf",".png",".swf",".xml",".zip"),
|
|
"codeAssist" => true,
|
|
"visibleTabs" => false,
|
|
"lockedNav" => true,
|
|
"password" => "",
|
|
"bannedFiles" => array("_coder","ICEcoder"),
|
|
"bannedPaths" => array("/var/www/.git","/var/www/sites/all/modules","/var/www/sites/default/files"),
|
|
"allowedIPs" => array("*"),
|
|
"plugins" => array(
|
|
array("Adminer","plugins/adminer/icon.png","margin-top: 3px","plugins/adminer/adminer-3.6.3-mysql-en.php","_blank",""),
|
|
array("JS Hint","plugins/jshint/icon.png","margin-top: 3px","http://www.jshint.com","_blank",""),
|
|
array("Emmet","plugins/emmet/icon.png","margin-top: 3px","http://docs.emmet.io","_blank",""),
|
|
array("ICErepo","plugins/ice-repo/icon.png","margin-top: 3px","plugins/ice-repo","_blank",""),
|
|
array("Dochub","plugins/dochub/icon.png","margin-top: 3px","http://dochub.io","_blank",""),
|
|
array("Voke","plugins/voke/icon.png","margin-top: 3px","http://voke.fm","_blank",""),
|
|
array("Regexplained","plugins/regexplained/icon.png","margin-top: 3px","http://leaverou.github.io/regexplained","_blank",""),
|
|
array("wireframe|cc","plugins/wireframecc/icon.png","margin-top: 3px","http://wireframe.cc","_blank",""),
|
|
array("TinyPNG","plugins/tinypng/icon.png","margin-top: 7px","http://tinypng.org","_blank",""),
|
|
array("Zip It!","plugins/zip-it/icon.png","margin-top: 3px; margin-left: 3px","plugins/zip-it/?zip=|&exclude=*.doc*.gif*.jpg*.jpeg*.pdf*.png*.swf*.xml*.zip","fileControl:<b>Zipping Files</b>","30")
|
|
),
|
|
"theme" => "default",
|
|
"fontSize" => "13px",
|
|
"lineWrapping" => true,
|
|
"indentWithTabs" => true,
|
|
"indentSize" => 4,
|
|
"previousFiles" => "",
|
|
"last10Files" => ""
|
|
);
|
|
?>
|