Skip to content

Instantly share code, notes, and snippets.

@esafwan
Last active December 30, 2015 05:48
Show Gist options
  • Save esafwan/7784586 to your computer and use it in GitHub Desktop.
Save esafwan/7784586 to your computer and use it in GitHub Desktop.
Add custom link to the contextual links of block in Drupal 7.
<?php
function ccl_block_contextual_links_view_alter(&$element, &$items) {
if (isset($element['#element']['#block']) && $element['#element']['#block']->delta == "custom_module") {
$element['#links']['edit_f_block'] = array(
'title' => 'Change Content',
'href' => url('admin/config/front/block', array('absolute' => TRUE)),
);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment