Revision 56aebcb7
Added by Assos Assos about 8 years ago
drupal7/sites/all/modules/views_data_export/theme/views_data_export.theme.inc | ||
---|---|---|
259 | 259 |
_views_data_export_body_shared_preprocess($vars); |
260 | 260 |
} |
261 | 261 |
|
262 |
/** |
|
263 |
* Implements hook_preprocess_views_data_export_doc_body(). |
|
264 |
*/ |
|
262 | 265 |
function template_preprocess_views_data_export_doc_body(&$vars) { |
263 | 266 |
// Pass through the generic MS Office preprocess. |
264 | 267 |
template_preprocess_views_data_export_msoffice_body($vars); |
265 | 268 |
} |
266 | 269 |
|
270 |
/** |
|
271 |
* Implements hook_preprocess_views_data_export_xls_body(). |
|
272 |
*/ |
|
267 | 273 |
function template_preprocess_views_data_export_xls_body(&$vars) { |
268 | 274 |
// Pass through the generic MS Office preprocess. |
269 | 275 |
template_preprocess_views_data_export_msoffice_body($vars); |
... | ... | |
272 | 278 |
function template_preprocess_views_data_export_msoffice_body(&$vars) { |
273 | 279 |
_views_data_export_header_shared_preprocess($vars); |
274 | 280 |
_views_data_export_body_shared_preprocess($vars); |
281 |
} |
|
282 |
|
|
283 |
/** |
|
284 |
* Implements hook_process_views_data_export_doc_body(). |
|
285 |
*/ |
|
286 |
function template_process_views_data_export_doc_body(&$vars) { |
|
287 |
// Pass through the generic MS Office process. |
|
288 |
template_process_views_data_export_msoffice_body($vars); |
|
289 |
} |
|
290 |
|
|
291 |
/** |
|
292 |
* Implements hook_process_views_data_export_xls_body(). |
|
293 |
*/ |
|
294 |
function template_process_views_data_export_xls_body(&$vars) { |
|
295 |
// Pass through the generic MS Office process. |
|
296 |
template_process_views_data_export_msoffice_body($vars); |
|
297 |
} |
|
298 |
|
|
299 |
function template_process_views_data_export_msoffice_body(&$vars) { |
|
275 | 300 |
|
276 | 301 |
$output = ''; |
277 | 302 |
|
Also available in: Unified diff
Weekly update of contrib modules