|
@@ -21,7 +21,7 @@ class Type{
|
|
|
|
|
|
$types['readme'] = array(
|
|
$types['readme'] = array(
|
|
'label' => 'README',
|
|
'label' => 'README',
|
|
- 'extension' => 'md',
|
|
|
|
|
|
+ 'extension' => array('md'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'smartIndent' => false,
|
|
'smartIndent' => false,
|
|
'readOnly' => false
|
|
'readOnly' => false
|
|
@@ -30,7 +30,7 @@ class Type{
|
|
|
|
|
|
$types['arduino'] = array(
|
|
$types['arduino'] = array(
|
|
'label' => 'Source Arduino',
|
|
'label' => 'Source Arduino',
|
|
- 'extension' => 'ino',
|
|
|
|
|
|
+ 'extension' => array('ino'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'clike',
|
|
'mode'=>'clike',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -41,7 +41,7 @@ class Type{
|
|
|
|
|
|
$types['clike'] = array(
|
|
$types['clike'] = array(
|
|
'label' => 'Source C++/C',
|
|
'label' => 'Source C++/C',
|
|
- 'extension' => 'cpp',
|
|
|
|
|
|
+ 'extension' => array('cpp'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'clike',
|
|
'mode'=>'clike',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -52,7 +52,7 @@ class Type{
|
|
|
|
|
|
$types['shell'] = array(
|
|
$types['shell'] = array(
|
|
'label' => 'Shell',
|
|
'label' => 'Shell',
|
|
- 'extension' => 'sh',
|
|
|
|
|
|
+ 'extension' => array('sh'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'shell',
|
|
'mode'=>'shell',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -63,7 +63,7 @@ class Type{
|
|
|
|
|
|
$types['php'] = array(
|
|
$types['php'] = array(
|
|
'label' => 'Source PHP',
|
|
'label' => 'Source PHP',
|
|
- 'extension' => 'php',
|
|
|
|
|
|
+ 'extension' => array('php'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'php',
|
|
'mode'=>'php',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -74,7 +74,7 @@ class Type{
|
|
|
|
|
|
$types['xml'] = array(
|
|
$types['xml'] = array(
|
|
'label' => 'Source XML',
|
|
'label' => 'Source XML',
|
|
- 'extension' => 'xml',
|
|
|
|
|
|
+ 'extension' => array('xml'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'htmlmixed',
|
|
'mode'=>'htmlmixed',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -86,7 +86,7 @@ class Type{
|
|
|
|
|
|
$types['python'] = array(
|
|
$types['python'] = array(
|
|
'label' => 'Source Python',
|
|
'label' => 'Source Python',
|
|
- 'extension' => 'py',
|
|
|
|
|
|
+ 'extension' => array('py'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'python',
|
|
'mode'=>'python',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -97,7 +97,7 @@ class Type{
|
|
|
|
|
|
$types['c'] = array(
|
|
$types['c'] = array(
|
|
'label' => 'Source C++',
|
|
'label' => 'Source C++',
|
|
- 'extension' => 'cpp',
|
|
|
|
|
|
+ 'extension' => array('cpp'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'clike',
|
|
'mode'=>'clike',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -108,7 +108,7 @@ class Type{
|
|
|
|
|
|
$types['java'] = array(
|
|
$types['java'] = array(
|
|
'label' => 'Source JAVA',
|
|
'label' => 'Source JAVA',
|
|
- 'extension' => 'java',
|
|
|
|
|
|
+ 'extension' => array('java'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'java',
|
|
'mode'=>'java',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -119,7 +119,7 @@ class Type{
|
|
|
|
|
|
$types['css'] = array(
|
|
$types['css'] = array(
|
|
'label' => 'Feuille CSS',
|
|
'label' => 'Feuille CSS',
|
|
- 'extension' => 'css',
|
|
|
|
|
|
+ 'extension' => array('css'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'css',
|
|
'mode'=>'css',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -129,7 +129,7 @@ class Type{
|
|
);
|
|
);
|
|
$types['javascript'] = array(
|
|
$types['javascript'] = array(
|
|
'label' => 'Source Javascript',
|
|
'label' => 'Source Javascript',
|
|
- 'extension' => 'js',
|
|
|
|
|
|
+ 'extension' => array('js'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'javascript',
|
|
'mode'=>'javascript',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -140,7 +140,7 @@ class Type{
|
|
|
|
|
|
$types['json'] = array(
|
|
$types['json'] = array(
|
|
'label' => 'Source JSON',
|
|
'label' => 'Source JSON',
|
|
- 'extension' => 'json',
|
|
|
|
|
|
+ 'extension' => array('json'),
|
|
'codemirror' => array(
|
|
'codemirror' => array(
|
|
'mode'=>'javascript',
|
|
'mode'=>'javascript',
|
|
'theme'=>'monokai',
|
|
'theme'=>'monokai',
|
|
@@ -156,7 +156,7 @@ class Type{
|
|
'element' => '#resource p img:eq(0)',
|
|
'element' => '#resource p img:eq(0)',
|
|
'callback' => '$(\'#resource img:eq(0)\').attr(\'src\',r.url);'
|
|
'callback' => '$(\'#resource img:eq(0)\').attr(\'src\',r.url);'
|
|
),
|
|
),
|
|
- 'extension' => 'jpg'
|
|
|
|
|
|
+ 'extension' => array('jpg','jpeg','png','bmp','gif','svg')
|
|
);
|
|
);
|
|
|
|
|
|
$types['files'] = array(
|
|
$types['files'] = array(
|
|
@@ -166,12 +166,12 @@ class Type{
|
|
'element' => '#dropZoneFiles',
|
|
'element' => '#dropZoneFiles',
|
|
'callback' => "search_file();",
|
|
'callback' => "search_file();",
|
|
),
|
|
),
|
|
- 'extension' => 'zip'
|
|
|
|
|
|
+ 'extension' => array('zip')
|
|
);
|
|
);
|
|
|
|
|
|
$types['part'] = array(
|
|
$types['part'] = array(
|
|
'label' => 'Set de composants',
|
|
'label' => 'Set de composants',
|
|
- 'extension' => 'part'
|
|
|
|
|
|
+ 'extension' => array('part')
|
|
);
|
|
);
|
|
|
|
|
|
|
|
|
|
@@ -214,8 +214,8 @@ class Type{
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
case 'image':
|
|
case 'image':
|
|
-
|
|
|
|
$resource->save();
|
|
$resource->save();
|
|
|
|
+ $ext = getExt($resource->label);
|
|
$name = $resource->id.'.'.$ext;
|
|
$name = $resource->id.'.'.$ext;
|
|
file_put_contents(SKETCH_PATH.$name,$stream);
|
|
file_put_contents(SKETCH_PATH.$name,$stream);
|
|
$resource->content = $name;
|
|
$resource->content = $name;
|
|
@@ -301,6 +301,7 @@ class Type{
|
|
$resource->content = '';
|
|
$resource->content = '';
|
|
$resource->save();
|
|
$resource->save();
|
|
break;
|
|
break;
|
|
|
|
+
|
|
default:
|
|
default:
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -429,7 +430,7 @@ class Type{
|
|
public static function toFileStream($resource){
|
|
public static function toFileStream($resource){
|
|
$type = self::get($resource->type);
|
|
$type = self::get($resource->type);
|
|
$file = (object) array('name'=>slugify($resource->label),'content'=>'');
|
|
$file = (object) array('name'=>slugify($resource->label),'content'=>'');
|
|
- if(isset($type['extension'])) $file->name .= '.'.$type['extension'];
|
|
|
|
|
|
+ if(isset($type['extension'])) $file->name .= '.'.$type['extension'][0];
|
|
switch($resource->type){
|
|
switch($resource->type){
|
|
case 'part':
|
|
case 'part':
|
|
$file->content = '> '.strtoupper($resource->label).PHP_EOL;
|
|
$file->content = '> '.strtoupper($resource->label).PHP_EOL;
|