You are here

views_handler_field_term_link_edit.inc in Views (for Drupal 7) 6.3

Same filename and directory in other branches
  1. 7.3 modules/taxonomy/views_handler_field_term_link_edit.inc

File

modules/taxonomy/views_handler_field_term_link_edit.inc
View source
<?php

/**
 * Field handler to present a term edit link.
 *
 * @ingroup views_field_handlers
 */
class views_handler_field_term_link_edit extends views_handler_field {
  function construct() {
    parent::construct();
    $this->additional_fields['tid'] = 'tid';
  }
  function option_definition() {
    $options = parent::option_definition();
    $options['text'] = array(
      'default' => '',
      'translatable' => TRUE,
    );
    return $options;
  }
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['text'] = array(
      '#type' => 'textfield',
      '#title' => t('Text to display'),
      '#default_value' => $this->options['text'],
    );
  }
  function query() {
    $this
      ->ensure_my_table();
    $this
      ->add_additional_fields();
  }
  function render($values) {
    if (user_access('administer taxonomy')) {
      $text = !empty($this->options['text']) ? $this->options['text'] : t('edit');
      $tid = $this
        ->get_value($values, 'tid');
      return l($text, 'admin/content/taxonomy/edit/term/' . $tid, array(
        'query' => drupal_get_destination(),
      ));
    }
  }

}

Classes

Namesort descending Description
views_handler_field_term_link_edit Field handler to present a term edit link.