You are here

function icon_icon_render_hooks in Icon API 7

Same name and namespace in other branches
  1. 8 includes/render.inc \icon_icon_render_hooks()

Define render hook information.

See also

hook_icon_render_hooks()

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;
}