mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-02 23:03:59 +01:00
27 lines
759 B
PHP
27 lines
759 B
PHP
<?php
|
|
$ICEcoderUserSettings = array(
|
|
"versionNo" => "3.5",
|
|
"root" => "",
|
|
"checkUpdates" => true,
|
|
"openLastFiles" => true,
|
|
"findFilesExclude" => array(".doc",".gif",".jpg",".jpeg",".pdf",".png",".swf",".xml",".zip"),
|
|
"codeAssist" => true,
|
|
"visibleTabs" => false,
|
|
"lockedNav" => true,
|
|
"tagWrapperCommand" => "ctrl+alt",
|
|
"autoComplete" => "ctrl+space",
|
|
"password" => "",
|
|
"bannedFiles" => array(),
|
|
"bannedPaths" => array("/var/www/.git","/var/www/sites/all/modules","/var/www/sites/default/files"),
|
|
"allowedIPs" => array("*"),
|
|
"theme" => "default",
|
|
"fontSize" => "13px",
|
|
"lineWrapping" => true,
|
|
"indentWithTabs" => true,
|
|
"indentSize" => 4,
|
|
"pluginPanelAligned" => "left",
|
|
"plugins" => array(),
|
|
"previousFiles" => "",
|
|
"last10Files" => ""
|
|
);
|
|
?>
|