Initial Commit

This commit is contained in:
2013-02-08 20:18:32 +00:00
commit eaaf97ef7e
61 changed files with 3375 additions and 0 deletions

17
html/ajax/edit.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
if (!defined('AJAX')) die('Invalid invocation');
$rules = new HtRule_List();
$rule = $rules->GetAtIndex($params['id']);
/* @var $rule HtRule */
$params = $rule->GetParams();
if (count($params) == 0)
return;
$form = new HtRule_Form($rule);
?>
<?php $form->ShowForm(); ?>