You are here

yashare_handler_field_yashare.inc in Yandex.Share 7.2

Implements the field handler class.

File

views/yashare_handler_field_yashare.inc
View source
<?php

/**
 * @file
 * Implements the field handler class.
 */
class yashare_handler_field_yashare extends views_handler_field_entity {
  public function render($values) {
    $output = '';
    if ($entity = $this
      ->get_value($values)) {
      $output = _yashare_widget_view($entity, $this->entity_type);
    }
    return $output;
  }

}

Classes

Namesort descending Description
yashare_handler_field_yashare @file Implements the field handler class.