-
Notifications
You must be signed in to change notification settings - Fork 0
/
fft.module
399 lines (350 loc) · 11 KB
/
fft.module
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<?php
/**
* @file
* Field formatter template.
*/
/**
* Implements hook_menu().
*/
function fft_menu() {
$items['admin/config/content/fft'] = array(
'title' => 'Field Formmater Template',
'page callback' => 'drupal_get_form',
'page arguments' => array('fft_config_form'),
'access arguments' => array('administer site configuration'),
);
return $items;
}
/**
* Implements hook_form().
*/
function fft_config_form($form, &$form_state) {
$form['fft_store_dir'] = array(
'#type' => 'textfield',
'#title' => t('Formmater template directory'),
'#default_value' => fft_store_dir(),
'#description' => t('Configure directory store field formatter template.'),
);
return system_settings_form($form);
}
/**
* Implements hook_field_formatter_info().
*/
function fft_field_formatter_info() {
$field_types = array_keys(field_info_field_types());
return array(
'fft_field' => array(
'label' => t('Formatter Template'),
'field types' => $field_types,
'settings' => array(
'template' => '',
'image_style_1' => '',
'image_style_2' => '',
'settings' => '',
),
),
);
}
/**
* Get real path with token.
*
* @param string $file
* File path. Use with {module-name} {theme-name} {theme} {fft}.
* @param string $template_file
* The template file.
*
* @return string
* Real path.
*/
function fft_realpath($file, $template_file = '') {
$file = trim($file);
if (strpos($file, '{') === FALSE) {
return $file;
}
if (strpos($file, '{fft}') !== FALSE) {
$theme_path = dirname($template_file);
$file = str_replace('{fft}', $theme_path, $file);
return $file;
}
if (strpos($file, '{theme}') !== FALSE) {
$theme_default = $GLOBALS['conf']['theme_default'];
$theme_path = drupal_get_path('theme', $theme_default);
$file = str_replace('{theme}', $theme_path, $file);
return $file;
}
$matches = array();
$types = array('module', 'theme', 'library');
foreach ($types as $type) {
$pattern = '/\{' . $type . '-(.+)\}/';
preg_match($pattern, $file, $matches);
if ($type == "library") {
if (count($matches) > 1 && ($path = libraries_get_path($matches[1])) != '') {
$file = str_replace($matches[0], $path, $file);
return $file;
}
}
else {
if (count($matches) > 1 && ($path = drupal_get_path($type, $matches[1])) != '') {
$file = str_replace($matches[0], $path, $file);
return $file;
}
}
}
return $file;
}
/**
* Clear up string.
*
* @param string $str
* The input string.
*
* @return string
* Cleanup string.
*/
function fft_cleanup_header_comment($str) {
return trim(preg_replace("/\s*(?:\*\/|\?>).*/", '', $str));
}
/**
* Get avaiables templates.
*
* @return array
* List of Field formatter template.
*/
function fft_get_templates() {
static $page_templates = NULL;
if (!$page_templates) {
$files = file_scan_directory(fft_store_dir(), '/^.*\.php$/');
foreach ($files as $full_path => $file) {
$file_content = file_get_contents($full_path);
$header = array();
if (!preg_match('|Template Name:(.*)$|mi', $file_content, $header)) {
continue;
}
$template_file = str_replace(fft_store_dir() . "/", '', $file->uri);
$page_templates['templates'][$template_file] = fft_cleanup_header_comment($header[1]);
$settings = array();
if (preg_match('%/\*Settings:(.*?)\*/%s', $file_content, $settings)) {
$page_templates['settings'][$template_file] = trim($settings[1]);
}
}
}
return $page_templates;
}
/**
* Implements hook_field_formatter_settings_form().
*/
function fft_field_formatter_settings_form($field, $instance, $view_mode, $form, &$form_state) {
$display = $instance['display'][$view_mode];
$settings = $display['settings'];
$form = array();
// Show select box for the option set.
$fft_templates = fft_get_templates();
$optionsets = $fft_templates['templates'];
$fft_templates['settings'][$settings['template']] = $settings['settings'];
$form['#attached']['js'][] = fft_realpath('{module-fft}/fft.js');
$form['#attached']['js'][] = array(
'data' => array(
'fft' => $fft_templates['settings'],
),
'type' => 'setting',
);
$form['template'] = array(
'#title' => t('Template'),
'#type' => 'select',
'#options' => $optionsets,
'#default_value' => $settings['template'],
'#attributes' => array('class' => array('fft-template')),
);
switch ($field['type']) {
case 'image':
$form['image_style_1'] = array(
'#type' => 'select',
'#title' => t('Image Styles 1'),
'#options' => image_style_options(),
'#default_value' => $settings['image_style_1'],
);
$form['image_style_2'] = array(
'#type' => 'select',
'#title' => t('Image Styles 2'),
'#options' => image_style_options(),
'#default_value' => $settings['image_style_2'],
);
break;
}
$settings_des[] = t('Add settings extras for template, one setting per line with syntax key = value.');
$settings_des[] = t('Support array like key[] = value or key[name] = value.');
$settings_des[] = t('Support add css and js with syntax css = pathtofile.css and js = pathtofile.css');
$settings_des[] = t('Add multi css js with syntax css[] = pathtofile1.css, css[] = pathtofile2.css');
$settings_des[] = t('Support path tokens:');
$settings_des[] = t('-- <strong>{fft}</strong>: path to folder of selected template');
$settings_des[] = t('-- <strong>{library-name}</strong>: path to folder of library "name"');
$settings_des[] = t('-- <strong>{module-name}</strong>: path to folder of module "name"');
$settings_des[] = t('-- <strong>{theme-name}</strong>: path to folder of theme "name"');
$settings_des[] = t('-- <strong>{theme}</strong>: path to folder of current default theme');
$form['settings'] = array(
'#type' => 'textarea',
'#title' => t('Settings Extras'),
'#default_value' => $settings['settings'],
'#attributes' => array('class' => array('fft-settings')),
);
$form['settings_des'] = array(
'#type' => 'fieldset',
'#title' => t('More Information'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['settings_des']['info'] = array(
'#type' => 'markup',
'#markup' => nl2br(implode("\r\n", $settings_des)),
);
return $form;
}
/**
* Implements hook_field_formatter_settings_summary().
*/
function fft_field_formatter_settings_summary($field, $instance, $view_mode) {
$display = $instance['display'][$view_mode];
$settings = $display['settings'];
$summary = t('Formatter Template');
if (isset($settings['template'])) {
$fft_template = fft_get_templates();
foreach ($fft_template['templates'] as $name => $title) {
if ($settings['template'] == $name) {
$summary = t('Formatter Template: @name', array($title));
}
}
}
return $summary;
}
/**
* Implements hook_field_formatter_view().
*/
function fft_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display) {
$element = array();
$settings = $display['settings'];
$data = array();
switch ($field['type']) {
case 'image':
case 'file':
$data = $items;
foreach ($data as $key => $item) {
$data[$key]['path'] = file_create_url($item['uri']);
if ($field['type'] == 'image') {
for ($i = 1; $i <= 2; $i++) {
if (!empty($settings["image_style_{$i}"])) {
$data[$key]["path_{$i}"] = fft_field_styled_image_url($item['uri'], $settings["image_style_{$i}"]);
$dimensions = array("width" => $item['width'], "height" => $item['height']);
image_style_transform_dimensions($settings["image_style_{$i}"], $dimensions);
$data[$key]["width_{$i}"] = $dimensions["width"];
$data[$key]["height_{$i}"] = $dimensions["height"];
}
}
}
}
break;
case 'text':
case 'text_long':
case 'text_with_summary':
foreach ($items as $key => $item) {
$data[] = array(
'text' => $item['safe_value'],
);
}
break;
case 'taxonomy_term_reference':
foreach ($items as $key => $item) {
$term = taxonomy_term_load($item['tid']);
$data[] = (array) $term;
}
break;
case 'field_collection':
$ids = field_collection_field_item_to_ids($items);
$data = field_collection_item_load_multiple($ids);
break;
case 'entityreference':
$ids = array();
foreach ($items as $key => $item) {
$ids[] = $item['target_id'];
}
$data = entity_load($field['settings']['target_type'], $ids);
break;
default:
$data = $items;
break;
}
if (!empty($data)) {
$template_file = fft_store_dir() . "/" . $settings['template'];
$settings_extras = drupal_parse_info_format($settings['settings']);
$attached = array();
foreach (array('js', 'css', 'library') as $item) {
if (isset($settings_extras[$item])) {
foreach ((array) $settings_extras[$item] as $key => $value) {
if (is_string($value)) {
$attached[$item][] = fft_realpath($value, $template_file);
}
else {
$attached[$item][] = $value;
}
}
}
}
$settings_extras = $attached + $settings_extras;
$settings_extras['image_style_1'] = $settings['image_style_1'];
$settings_extras['image_style_2'] = $settings['image_style_2'];
$output = fft_render($template_file, array(
'data' => $data,
'entity' => $entity,
'settings' => $settings_extras,
));
$element[0] = array(
'#markup' => $output,
'#attached' => $attached,
);
}
return $element;
}
/**
* Get image url with then style name.
*
* @param string $image_uri
* Image uri.
* @param string $style
* Image style name.
*
* @return string
* Return image url.
*/
function fft_field_styled_image_url($image_uri, $style) {
$image_filepath = image_style_path($style, $image_uri);
if (!file_exists($image_filepath)) {
image_style_create_derivative(image_style_load($style), $image_uri, $image_filepath);
}
return file_create_url($image_filepath);
}
/**
* Render template with variables.
*
* @param string $template_file
* Template name.
* @param array $variables
* Variables for template.
*
* @return string
* Rendered template.
*/
function fft_render($template_file, $variables) {
if (!is_file($template_file)) {
return "";
}
$render_fn = function_exists('phptemplate_render_template') ? 'phptemplate_render_template' : 'theme_render_template';
return $render_fn($template_file, $variables);
}
/**
* Get store directory.
*
* @return string
* Path of store dicrectory.
*/
function fft_store_dir() {
return variable_get('fft_store_dir', "sites/all/formatter");
}