mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-26 04:51:08 -05:00
32 lines
617 B
PHP
32 lines
617 B
PHP
<?php
|
|
/**
|
|
* Class and Function List:
|
|
* Function list:
|
|
* Classes list:
|
|
*/
|
|
|
|
if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
//codemirror languages
|
|
$config['ace_languages'] = array(
|
|
'text' => 'plain_text',
|
|
'html5' => 'html',
|
|
'css' => 'css',
|
|
'javascript' => 'javascript',
|
|
'php' => 'php',
|
|
'python' => 'python',
|
|
'ruby' => 'ruby',
|
|
'lua' => 'lua',
|
|
'erlang' => 'erlang',
|
|
'go' => 'golang',
|
|
'c' => 'c_cpp',
|
|
'cpp' => 'c_cpp',
|
|
'diff' => 'diff',
|
|
'latex' => 'latex',
|
|
'sql' => 'sql',
|
|
'xml' => 'xml',
|
|
'abap' => 'abap',
|
|
'actionscript' => 'actionscript',
|
|
'actionscript3' => 'actionscript',
|
|
);
|