mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 15:24:00 +01:00
These 2 values were originally set to exclude showing ICEcoder based files in the search results and file manager. However, some users will install ICEcoder to another dir name, so removed these hardcoded values from here and excluding in a better way in both instances.
27 lines
759 B
PHP
27 lines
759 B
PHP
<?php
|
|
$ICEcoderUserSettings = array(
|
|
"versionNo" => "3.4",
|
|
"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" => ""
|
|
);
|
|
?>
|