You are here

public function Jssor::getField in Jssor Slider 8

Retrieves a views field value from the style plugin.

Parameters

$index: The index count of the row as expected by views_plugin_style::getField().

$field_id: The ID assigned to the required field in the display.

Return value

string|null|\Drupal\Component\Render\MarkupInterface An empty string if there is no style plugin, or the field ID is empty. NULL if the field value is empty. If neither of these conditions apply, a MarkupInterface object containing the rendered field value.

1 call to Jssor::getField()
Jssor::render in src/Plugin/views/row/Jssor.php
Render a row object. This usually passes through to a theme template of some form, but not always.

File

src/Plugin/views/row/Jssor.php, line 306
Definition of Drupal\jssor\Plugin\views\row\Jssor.

Class

Jssor
Row handler plugin for displaying search results.

Namespace

Drupal\jssor\Plugin\views\row

Code

public function getField($index, $field_id) {
  if (empty($this->view->style_plugin) || !is_object($this->view->style_plugin) || empty($field_id)) {
    return '';
  }
  return $this->view->style_plugin
    ->getField($index, $field_id);
}