19 lines
465 B
PHP
19 lines
465 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* This file is a part of MyWebSQL package
|
||
|
|
* list of available sql editors for the application
|
||
|
|
*
|
||
|
|
* @file: config/editors.php
|
||
|
|
* @author Samnan ur Rehman
|
||
|
|
* @copyright (c) 2008-2014 Samnan ur Rehman
|
||
|
|
* @web http://mywebsql.net
|
||
|
|
* @license http://mywebsql.net/license
|
||
|
|
*/
|
||
|
|
|
||
|
|
$CODE_EDITORS = array(
|
||
|
|
'simple' => "Plain Text",
|
||
|
|
'codemirror' => "CodeMirror",
|
||
|
|
'codemirror2' => "CodeMirror 2 (Experimental)"
|
||
|
|
);
|
||
|
|
|
||
|
|
?>
|