mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-02 14:53:59 +01:00
Repurposed this var to both check for newer ICEcoder and CodeMirror versions Renamed to checkUpdates
24 lines
940 B
PHP
24 lines
940 B
PHP
<?php
|
|
$versionNo = "v 0.7.2";
|
|
$codeMirrorDir = "CodeMirror-2.25";
|
|
$cMThisVer = 2.25;
|
|
$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",""),
|
|
array("Backup","images/backup-open-files.png","margin-top: 3px","plugins/backupOpenFiles/index.php","fileControl:<b>Zipping Open Files</b>","10")
|
|
);
|
|
$theme = "default";
|
|
$previousFiles = "";
|
|
$last10Files = "";
|
|
?>
|