You are here

shurly_handler_field_shurly_link_edit.inc in ShURLy 7

Shurly Views handler for editing links function

File

views/shurly_handler_field_shurly_link_edit.inc
View source
<?php

/**
 * @file
 * Shurly Views handler for editing links function
 */

/**
 * Field handler to present a link to the short URL entry.
 */
class shurly_handler_field_shurly_link_edit extends views_handler_field {
  function construct() {
    parent::construct();
    $this->additional_fields['uid'] = 'uid';
    $this->additional_fields['active'] = 'active';
    $this->additional_fields['rid'] = 'rid';
  }
  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) {
    global $user;
    $uid = $values->{$this->aliases['uid']};
    $active = $values->{$this->aliases['active']};
    if (!$active) {
      return t('deactivated');
    }

    // only allow the user to view the link if they can actually edit
    if (user_access('Administer short URLs') || user_access('Edit own URLs') && $uid == $user->uid) {
      $text = !empty($this->options['text']) ? $this->options['text'] : t('edit');
      $rid = $values->rid;
      return l($text, "shurly/edit/{$rid}", array(
        'query' => drupal_get_destination(),
      ));
    }
  }

}

Classes

Namesort descending Description
shurly_handler_field_shurly_link_edit Field handler to present a link to the short URL entry.