public static function TextimageStyles::getStyleEffectsOutline in Textimage 7.3
Build an outline of the style effects' data, given the style name.
Parameters
array $style_name: Image style name.
Return value
array a simple array, where each element is an associative array of 'name' => the effect name 'data' => the effect data
File
- classes/
TextimageStyles.inc, line 223 - Textimage - Styles handling class.
Class
- TextimageStyles
- Styles management class.
Code
public static function getStyleEffectsOutline($style_name) {
if ($style = self::get($style_name)) {
return self::getEffectsOutline($style);
}
else {
return NULL;
}
}