Mercurial > hg > rr-repo
view sites/all/modules/features/includes/features.block.inc @ 9:830c812b520f
added smtp module
author | root <root@paio.local> |
---|---|
date | Mon, 28 Oct 2013 15:34:27 +0000 |
parents | ce11bbd8f642 |
children |
line wrap: on
line source
<?php /** * Implements hook_features_api(). */ function block_features_api() { return array(); } /** * Implements hook_features_export(). */ function block_features_export($data, &$export) { $pipe = array(); foreach ($data as $bid) { $split = explode('-', $bid); $module = array_shift($split); $delta = implode('-', $split); $export['dependencies'][$module] = $module; switch ($module) { case 'views': if (strlen($delta) == 32) { $hashes = variable_get('views_block_hashes', array()); if (!empty($hashes[$delta])) { $delta = $hashes[$delta]; } } $delta_split = explode('-', $delta); $view_name = $delta_split[0]; if (!empty($view_name)) { $pipe['views'][] = $view_name; } break; } } return $pipe; }