function contextual_element_info
Implements hook_element_info().
File
-
modules/
contextual/ contextual.module, line 60
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.