1
0
This repository has been archived on 2025-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
LuckyCoinkydink/htmlarea/plugins/InsertSnippet/snippets.php

22 lines
508 B
PHP
Executable File

<?php
$snippets_file = 'snippets.html';
include_once('../../contrib/php-xinha.php');
if($passed_data = xinha_read_passed_data())
{
extract($passed_data);
}
$snippets = file_get_contents($snippets_file);
preg_match_all('/<!--(.*?)-->(.*?)<!--\/.*?-->/s',$snippets,$matches);
$array=array();
for ($i=0;$i<count($matches[1]);$i++)
{
$id = $matches[1][$i];
$html = $matches[2][$i];
$array[] = array('id'=>$id,'HTML'=>$html);
}
print "var snippets = " . xinha_to_js($array);
?>