You are here

block_edit.views.inc in Block edit 6

File

block_edit.views.inc
View source
<?php

function block_edit_views_admin_links_alter(&$links, $view) {
  if (strpos($view->current_display, 'block') === 0) {
    $links[] = array(
      'title' => t('Configure'),
      'alt' => t('Configure this block'),
      'href' => "admin/build/block/configure/views/{$view->name}-{$view->current_display}",
      'query' => drupal_get_destination(),
    );
  }
}