function contextual_element_info in Drupal 7
Implements hook_element_info().
File
- modules/
contextual/ contextual.module, line 60 - Adds contextual links to perform actions related to elements on a page.
Code
function contextual_element_info() {
$types['contextual_links'] = array(
'#pre_render' => array(
'contextual_pre_render_links',
),
'#theme' => 'links__contextual',
'#links' => array(),
'#prefix' => '<div class="contextual-links-wrapper">',
'#suffix' => '</div>',
'#attributes' => array(
'class' => array(
'contextual-links',
),
),
'#attached' => array(
'library' => array(
array(
'contextual',
'contextual-links',
),
),
),
);
return $types;
}