Added support for more file types
This commit is contained in:
parent
bc7289bb28
commit
98ded8d168
|
@ -48,7 +48,13 @@ if(substr_count($file,'.')!=0){
|
||||||
// TODO ADD THESE
|
// TODO ADD THESE
|
||||||
$types = array('php' => 'php',
|
$types = array('php' => 'php',
|
||||||
'js' => 'javascript',
|
'js' => 'javascript',
|
||||||
'html' => 'html');
|
'html' => 'html',
|
||||||
|
'css' => 'css',
|
||||||
|
'pl' => 'perl',
|
||||||
|
'py' => 'python',
|
||||||
|
'rb' => 'ruby',
|
||||||
|
'xml' => 'xml',
|
||||||
|
'svg' => 'svg');
|
||||||
$filetype = $types[$parts[1]];
|
$filetype = $types[$parts[1]];
|
||||||
OC_UTIL::addScript('editor','aceeditor/mode-'.$filetype);
|
OC_UTIL::addScript('editor','aceeditor/mode-'.$filetype);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue