You are here

public function IndexRecord::getTransformedContent in Views Natural Sort 8.2

File

src/IndexRecord.php, line 62

Class

IndexRecord

Namespace

Drupal\views_natural_sort

Code

public function getTransformedContent() {
  $transformed_content = $this->content;
  foreach ($this->transformations as $transformation) {
    $transformed_content = $transformation
      ->transform($transformed_content);
  }
  return mb_substr($transformed_content, 0, 255);
}