function icon_icon_render_hooks in Icon API 8
Same name and namespace in other branches
- 7 includes/render.inc \icon_icon_render_hooks()
Define render hook information.
See also
File
- includes/
render.inc, line 14 - render.inc Provides hooks and theme callbacks for default render hooks. @TODO add a "sprite" render hook.
Code
function icon_icon_render_hooks() {
$hooks['image'] = array(
'file' => 'render.inc',
'path' => drupal_get_path('module', 'icon') . '/includes',
);
$hooks['sprite'] = array(
'file' => 'render.inc',
'path' => drupal_get_path('module', 'icon') . '/includes',
);
return $hooks;
}