Add Xinha editor
[booki.git] / site_media / xinha / plugins / InsertSnippet / snippets.php
blob8c59db90daf4a4af5f18fe59d6e66c16cae07f8b
1 <?php
2 $snippets_file = 'snippets.html';
4 include_once('../../contrib/php-xinha.php');
6 if($passed_data = xinha_read_passed_data())
8 extract($passed_data);
10 $snippets = file_get_contents($snippets_file);
11 preg_match_all('/<!--(.*?)-->(.*?)<!--\/.*?-->/s',$snippets,$matches);
13 $array=array();
14 for ($i=0;$i<count($matches[1]);$i++)
16 $id = $matches[1][$i];
17 $html = $matches[2][$i];
18 $array[] = array('id'=>$id,'HTML'=>$html);
20 print "var snippets = " . xinha_to_js($array);