102 lines
2.7 KiB
PHP
102 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Implements hook_features_api().
|
|
*/
|
|
function image_features_api() {
|
|
return array(
|
|
'image' => array(
|
|
'name' => t('Image styles'),
|
|
'feature_source' => TRUE,
|
|
'default_hook' => 'image_default_styles',
|
|
'alter_hook' => 'image_styles',
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Implements hook_features_export_options().
|
|
*/
|
|
function image_features_export_options() {
|
|
$options = array();
|
|
foreach (image_styles() as $name => $style) {
|
|
$options[$name] = $style['name'];
|
|
}
|
|
return $options;
|
|
}
|
|
|
|
/**
|
|
* Implements hook_features_export().
|
|
*/
|
|
function image_features_export($data, &$export, $module_name = '') {
|
|
$pipe = array();
|
|
$map = features_get_default_map('image');
|
|
foreach ($data as $style) {
|
|
$export['dependencies']['image'] = 'image';
|
|
// If another module provides this style, add it as a dependency
|
|
if (isset($map[$style]) && $map[$style] != $module_name) {
|
|
$module = $map[$style];
|
|
$export['dependencies'][$module] = $module;
|
|
}
|
|
// Otherwise, export the style
|
|
elseif (image_style_load($style)) {
|
|
$export['features']['image'][$style] = $style;
|
|
}
|
|
}
|
|
return $pipe;
|
|
}
|
|
|
|
/**
|
|
* Implements hook_features_export_render().
|
|
*/
|
|
function image_features_export_render($module_name, $data, $export = NULL) {
|
|
$code = array();
|
|
$code[] = ' $styles = array();';
|
|
$code[] = '';
|
|
foreach ($data as $name) {
|
|
if ($style = image_style_load($name)) {
|
|
_image_features_style_sanitize($style);
|
|
$style_export = features_var_export($style, ' ');
|
|
$style_identifier = features_var_export($name);
|
|
$code[] = " // Exported image style: {$name}.";
|
|
$code[] = " \$styles[{$style_identifier}] = {$style_export};";
|
|
$code[] = "";
|
|
}
|
|
}
|
|
$code[] = ' return $styles;';
|
|
$code = implode("\n", $code);
|
|
return array('image_default_styles' => $code);
|
|
}
|
|
|
|
/**
|
|
* Implements hook_features_revert().
|
|
*/
|
|
function image_features_revert($module) {
|
|
if ($default_styles = features_get_default('image', $module)) {
|
|
foreach (array_keys($default_styles) as $default_style) {
|
|
if ($style = image_style_load($default_style)) {
|
|
if ($style['storage'] != IMAGE_STORAGE_DEFAULT) {
|
|
image_default_style_revert($style);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove unnecessary keys for export.
|
|
*/
|
|
function _image_features_style_sanitize(&$style, $child = FALSE) {
|
|
$omit = $child ? array('isid', 'ieid', 'storage') : array('isid', 'ieid', 'storage', 'module');
|
|
if (is_array($style)) {
|
|
foreach ($style as $k => $v) {
|
|
if (in_array($k, $omit, TRUE)) {
|
|
unset($style[$k]);
|
|
}
|
|
else if (is_array($v)) {
|
|
_image_features_style_sanitize($style[$k], TRUE);
|
|
}
|
|
}
|
|
}
|
|
}
|