You are here

service_links_handler_field_service_links.inc in Service links 6.2

Same filename and directory in other branches
  1. 7.2 service_links_handler_field_service_links.inc

A handler to provide a service links field for a particular node.

File

service_links_handler_field_service_links.inc
View source
<?php

/**
 * @file
 * A handler to provide a service links field for a particular node.
 *
 * @ingroup views_field_handlers
 */
class service_links_handler_field_service_links extends views_handler_field {
  function construct() {
    parent::construct();
    $this->additional_fields['nid'] = 'nid';
    $this->additional_fields['title'] = 'title';
  }
  function query() {
    $this
      ->ensure_my_table();
    $this
      ->add_additional_fields();
  }
  function option_definition() {
    $options = parent::option_definition();
    return $options;
  }
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);

    // Remove the alteration stuff
    unset($form['alter']);
  }
  function render($values) {
    $node = new stdClass();
    $node->nid = $values->{$this->aliases['nid']};
    $node->title = $values->{$this->aliases['title']};

    // Nothing to render.
    return theme('links', service_links_render($node, TRUE));
  }

}

Classes

Namesort descending Description
service_links_handler_field_service_links @file A handler to provide a service links field for a particular node.