1 image.inc | image_get_available_toolkits() |
Gets a list of available toolkits.
Return value
An array with the toolkit names as keys and the descriptions as values.:
Related topics
File
- core/
includes/ image.inc, line 49 - API for manipulating images.
Code
function image_get_available_toolkits() {
// hook_image_toolkits returns an array of toolkit names.
$toolkits = module_invoke_all('image_toolkits');
$output = array();
foreach ($toolkits as $name => $info) {
// Only allow modules that aren't marked as unavailable.
if ($info['available']) {
$output[$name] = $info['title'];
}
}
return $output;
}