-
Notifications
You must be signed in to change notification settings - Fork 1
/
qa-rpc-admin.php
60 lines (42 loc) · 1.02 KB
/
qa-rpc-admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
class qa_rpc_admin {
function allow_template($template)
{
return ($template!='admin');
}
function option_default($option) {
switch($option) {
case 'xmlrpc_allow_level':
return QA_PERMIT_USERS;
default:
return null;
}
}
function admin_form(&$qa_content)
{
// Process form input
$ok = null;
if (qa_clicked('xml_rpc_save')) {
qa_opt('xml_rpc_bool_active',(bool)@$_POST['xml_rpc_bool_active']);
$ok = qa_lang('admin/options_saved');
}
// Create the form for display
$fields = array();
$fields[] = array(
'label' => 'Enable XML-RPC server',
'tags' => 'NAME="xml_rpc_bool_active"',
'value' => qa_opt('xml_rpc_bool_active'),
'type' => 'checkbox',
);
return array(
'ok' => ($ok && !isset($error)) ? $ok : null,
'fields' => $fields,
'buttons' => array(
array(
'label' => qa_lang_html('main/save_button'),
'tags' => 'NAME="xml_rpc_save"',
),
),
);
}
}