Drupal Utility Components and functions | Drupal 8

Drupal Utility Components and functions

Submitted by editor on Tue, 10/04/2016 - 11:17
Question

Few Drupal 8's utility functions and components.

Drupal Utility list

ArgumentsResolver, ArgumentsResolverInterface, Bytes, Color, Crypt, DiffArray, Environment, Html, Image, NestedArray, Number, OpCodeCache, Random, Rectangle, SafeMarkup, SortArray, Tags, Timer, ToStringTrait, Unicode, UrlHelper, UserAgent, Variable, Xss

From : \Drupal\Component\Utility\. Example : \Drupal\Component\Utility\UrlHelper

 

Trim / Truncate a text

$truncate_string = \Drupal\Component\Utility\Unicode::truncate($string, 100, TRUE , TRUE, 1);
// $string, $max_length, $wordsafe = FALSE, $add_ellipsis = FALSE, $min_wordsafe_length = 1

Make a HTML correction.

$text_new = \Drupal\Component\Utility\Html::normalize($text);
//
 

 

Add new comment

Plain text

  • No HTML tags allowed.
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.