12
           
            
                
     
    
    Unpack the 
archive into a folder /class/xoopseditor/tinymce4/external_plugins/
edit the file /class/xoopseditor/tinymce4/tinymce.php
Find the line (326)
 $ret .= '"xoops_tagextgal": "'.$chemin_path.'/class/xoopseditor/tinymce4/external_plugins/xoops_tagextgal/plugin.min.js",';  
Add afterwards
 $ret .= '"codemirror": "'.$chemin_path.'/class/xoopseditor/tinymce4/external_plugins/codemirror/plugin.min.js",';  
Find the line (330)
 $ret .= '},';  
Add afterwards
 $ret .= 'codemirror: { 
    indentOnInit: true, 
    path: "CodeMirror", 
    config: { 
       mode: "application/x-httpd-php", 
       lineNumbers: false 
    }, 
    jsFiles: [ 
       "mode/clike/clike.js", 
       "mode/php/php.js" 
    ] 
  },';  
Enjoy!