-
Notifications
You must be signed in to change notification settings - Fork 6
/
bpi.admin.inc
266 lines (231 loc) · 7.23 KB
/
bpi.admin.inc
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<?php
/**
* @file
* Admin related things here.
*/
/**
* Creates an administrative block on the configuration page
* for grouping various settings.
*
* @return type
* HTML for the block.
*/
function bpi_admin_menu_block_page() {
$item = menu_get_item();
$content = system_admin_menu_block($item);
if ($content) {
$output = theme('admin_block_content', array('content' => $content));
}
else {
$output = t('You do not have any administrative items.');
}
return $output;
}
/**
* Administrative settings form.
*
* @param array $form
* Form structure.
* @param array $form_state
* Form state values.
* @return array
* Form structure prepared for admin settings.
*
* @ingroup forms
*/
function bpi_admin_settings_form($form, $form_state) {
$form['bpi_service_settings'] = array(
'#type' => 'fieldset',
'#title' => t('BPI Service settings'),
);
$form['bpi_service_settings']['bpi_agency_id'] = array(
'#type' => 'textfield',
'#title' => t('Agency ID'),
'#default_value' => variable_get('bpi_agency_id', ''),
'#required' => TRUE,
);
$form['bpi_service_settings']['bpi_service_url'] = array(
'#type' => 'textfield',
'#title' => t('Service URL'),
'#default_value' => variable_get('bpi_service_url', ''),
'#required' => TRUE,
);
$form['bpi_service_settings']['bpi_secret_key'] = array(
'#type' => 'textfield',
'#title' => t('Secret key'),
'#default_value' => variable_get('bpi_secret_key', ''),
'#required' => TRUE,
);
$form['bpi_service_settings']['bpi_api_key'] = array(
'#type' => 'textfield',
'#title' => t('API key'),
'#default_value' => variable_get('bpi_api_key', ''),
'#required' => TRUE,
);
$form['bpi_general_settings'] = array(
'#type' => 'fieldset',
'#title' => t('General settings'),
);
$form['bpi_general_settings']['bpi_content_per_page'] = array(
'#type' => 'select',
'#title' => t('Content per page'),
'#options' => array_combine(range(10, 100, 10), range(10, 100, 10)),
'#default_value' => variable_get('bpi_content_per_page', BPI_CONTENT_PER_PAGE),
);
$form['#attached']['css'][] = drupal_get_path('module', 'bpi') . '/css/bpi-admin.styles.css';
$form['#validate'][] = 'bpi_admin_settings_form_validate';
return system_settings_form($form);
}
/**
* Custom validate handler for common settings form.
*
* Used for url validation, for now.
*
* @see bpi_admin_settings_form()
*
* @param array $form
* Form structure.
* @param array $form_state
* Form state values.
*
* @ingroup forms
*/
function bpi_admin_settings_form_validate(&$form, &$form_state) {
$url = $form_state['values']['bpi_service_url'];
// Check if ting agency matches bpi agency.
if (module_exists('ting') && variable_get('ting_agency', FALSE) != $form_state['values']['bpi_agency_id']) {
drupal_set_message(t('T!NG agency ID %id does not match BPI agency ID', array('%id' => variable_get('ting_agency', FALSE))), 'warning');
}
if (!valid_url($url, TRUE)) {
form_set_error('bpi_service_url', t('Please enter a valid url.'));
}
}
/**
* Map BPI fields to local node fields when syndicating and/or pushing.
*
* Since on different installations it's most likely possible that
* fields will differ from what is to be expected, field mapping
* functionality is required.
*
* The mapping settings from here are used both when syndicating
* and when pushing content from/to BPI.
*
* @param array $form
* Form structure.
* @param array $form_state
* Form state values.
* @return array
* Form structure prepared for admin settings.
*
* @ingroup forms
*/
function bpi_admin_content_mapping_form($form, $form_state) {
$node_types = node_type_get_names();
$node_types_names = array_keys($node_types);
$form['bpi_content_type'] = array(
'#type' => 'select',
'#title' => t('Content type'),
'#description' => t('Select a content type into which content from BPI will be syndicated.'),
'#options' => $node_types,
'#default_value' => variable_get('bpi_content_type', reset($node_types_names)),
'#ajax' => array(
'callback' => '_bpi_content_mapper_ctype_fields',
'wrapper' => 'bpi-field-mapper-wrapper',
'effect' => 'fade',
'method' => 'replace',
),
);
$selected_node_type = $form['bpi_content_type']['#default_value'];
if (isset($form_state['values']['bpi_content_type'])) {
$selected_node_type = $form_state['values']['bpi_content_type'];
}
$field_instances = bpi_get_field_instances($selected_node_type);
$form['bpi_mapper'] = array(
'#type' => 'fieldset',
'#title' => t('Field mapping'),
'#description' => t('Define you custom mapping rules. Each dropdown maps BPI related fields to your content fields.'),
'#prefix' => '<div id="bpi-field-mapper-wrapper">',
'#suffix' => '</div>',
);
$form['bpi_mapper']['bpi_field_title'] = array(
'#type' => 'select',
'#title' => t('BPI title'),
'#description' => t('Titles are automatically assigned.'),
'#options' => array('title' => t('Title')),
'#default_value' => variable_get('bpi_field_title', 'title'),
'#disabled' => TRUE,
);
$form['bpi_mapper']['bpi_field_teaser'] = array(
'#type' => 'select',
'#title' => t('BPI teaser'),
'#description' => t('Assign to body field, if it has summary enabled.'),
'#options' => $field_instances,
'#default_value' => variable_get('bpi_field_teaser', ''),
);
$form['bpi_mapper']['bpi_field_body'] = array(
'#type' => 'select',
'#title' => t('BPI body'),
'#description' => '',
'#options' => $field_instances,
'#default_value' => variable_get('bpi_field_body', ''),
);
$form['bpi_mapper']['bpi_field_materials'] = array(
'#type' => 'select',
'#title' => t('BPI materials'),
'#description' => '',
'#options' => $field_instances,
'#default_value' => variable_get('bpi_field_materials', ''),
);
$form['#attached']['css'][] = drupal_get_path('module', 'bpi') . '/css/bpi-admin.styles.css';
return system_settings_form($form);
}
/**
* Custom form AJAX callback.
*
* @see bpi_admin_content_mapping_form()
*
* @param array $form
* Form structure.
* @param array $form_state
* Form state values.
* @return array
* Element to be altered via AJAX.
*
* @ingroup forms
*/
function _bpi_content_mapper_ctype_fields(&$form, &$form_state) {
return $form['bpi_mapper'];
}
/**
* Get a list of fields, for a certain node type.
*
* Simplifies and filters the output of the core field_info_instances()
* function.
*
* Filtering means that we do not want text values into image fields, etc.
*
* @param string $node_type
* Node type machine name, whose fields list is expected.
*
* @return array
* An array with the fields, for the specified node type.
*/
function bpi_get_field_instances($node_type) {
if (empty($node_type)) {
return array();
}
$fields = array();
$allowed_widgets = array(
'text_textfield',
'text_textarea',
'text_textarea_with_summary',
'ting_reference_simple',
);
$field_instances = field_info_instances('node', $node_type);
foreach ($field_instances as $instance) {
if (in_array($instance['widget']['type'], $allowed_widgets)) {
$fields[$instance['field_name']] = $instance['label'];
}
}
return $fields;
}