You are here

class addthis_handler_field_service_links in AddThis 6.2

Same name and namespace in other branches
  1. 7.2 addthis_handler_field_service_links.inc \addthis_handler_field_service_links

@file A handler to provide an AddThis field for a particular node.

Hierarchy

Expanded class hierarchy of addthis_handler_field_service_links

1 string reference to 'addthis_handler_field_service_links'
addthis_views_data in ./addthis.views.inc
Implementation of hook_views_data().

File

./addthis_handler_field_service_links.inc, line 9
A handler to provide an AddThis field for a particular node.

View source
class addthis_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) {
    if (user_access('view addthis')) {
      $node = new stdClass();
      $node->nid = $values->{$this->aliases['nid']};
      $node->title = $values->{$this->aliases['title']};
      return _addthis_create_button($node, TRUE);
    }
  }

}

Members