source: extensions/rv_autocomplete/admin/variants.php @ 28153

Last change on this file since 28153 was 28153, checked in by rvelices, 10 years ago

autocomplete allows synonims / misspellings, etc ...

File size: 276 bytes
Line 
1<?php 
2defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
3
4
5$items = array();
6$rules = rvac_load_variant_rules();
7foreach($rules as $k => $rule)
8{
9  $rule['key'] = $k;
10  $items[] = $rule;
11}
12
13$template->assign('variants', $items);
14
15$template->assign('RVAC_ID', RVAC_ID);
16?>
Note: See TracBrowser for help on using the repository browser.