You are here

public function ShareEverywhereField::render in Share Everywhere 2.x

Same name and namespace in other branches
  1. 8 src/Plugin/views/field/ShareEverywhereField.php \Drupal\share_everywhere\Plugin\views\field\ShareEverywhereField::render()

Renders the field.

Parameters

\Drupal\views\ResultRow $values: The values retrieved from a single row of a view's query result.

Return value

string|\Drupal\Component\Render\MarkupInterface The rendered output. If the output is safe it will be wrapped in an object that implements MarkupInterface. If it is empty or unsafe it will be a string.

Overrides FieldPluginBase::render

File

src/Plugin/views/field/ShareEverywhereField.php, line 66

Class

ShareEverywhereField
Field handler to display Share Everywhere buttons.

Namespace

Drupal\share_everywhere\Plugin\views\field

Code

public function render(ResultRow $values) {
  $node = $values->_entity;
  $url = $node
    ->toUrl()
    ->setAbsolute()
    ->toString();
  $id = $node
    ->getEntityTypeId() . $node
    ->id();
  return $this->shareService
    ->build($url, $id);
}