-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresync.tform.php
More file actions
24 lines (20 loc) · 876 Bytes
/
resync.tform.php
File metadata and controls
24 lines (20 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
$form["title"] = "Resync Tool";
$form["description"] = "";
$form["name"] = "resync";
$form["action"] = "resync.php";
$form["db_history"] = "no";
$form["tab_default"] = "resync";
$form["list_default"] = "resync.php";
$form["auth"] = 'yes';
$form["auth_preset"]["userid"] = 0; // 0 = id of the user, > 0 id must match with id of current user
$form["auth_preset"]["groupid"] = 0; // 0 = default groupid of the user, > 0 id must match with groupid of current user
$form["auth_preset"]["perm_user"] = 'riud'; //r = read, i = insert, u = update, d = delete
$form["auth_preset"]["perm_group"] = 'riud'; //r = read, i = insert, u = update, d = delete
$form["auth_preset"]["perm_other"] = ''; //r = read, i = insert, u = update, d = delete
$form["tabs"]['resync'] = array (
'title' => "Resync",
'width' => 100,
'template' => "templates/resync.htm",
);
?>