You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
796 B

<?php
require_once './config.php';
use app\models\Settings;
use nzedb\Regexes;
$page = new AdminPage();
$page->title = "Collections Regex Test";
$group = trim(isset($_POST['group']) && !empty($_POST['group']) ? $_POST['group'] : '');
$regex = trim(isset($_POST['regex']) && !empty($_POST['regex']) ? $_POST['regex'] : '');
$limit = (isset($_POST['limit']) && is_numeric($_POST['limit']) ? $_POST['limit'] : 50);
$page->smarty->assign(['group' => $group, 'regex' => $regex, 'limit' => $limit]);
if ($group && $regex) {
$page->smarty->assign('data',
(new Regexes([
'Settings' => $page->settings,
'Table_Name' => 'collection_regexes'
]
))->testCollectionRegex($group, $regex, $limit)
);
}
$page->content = $page->smarty->fetch('collection_regexes-test.tpl');
$page->render();