JHtmlString

HTML helper class for rendering manipulated strings.

abstract
package

Joomla.Platform

subpackage

HTML

since

11.1

Methods

abridge

Abridges text strings over the specified character limit. The behavior will insert an ellipsis into the text replacing a section of variable size to ensure the string does not exceed the defined maximum length. This method is UTF-8 safe.

abridge(string $text, integer $length = 50, integer $intro = 30) : string
static

For example, it transforms "Really long title" to "Really...title".

Note that this method does not scan for HTML tags so will potentially break them.

since

11.1

Arguments

$text

stringThe text to abridge.

$length

integerThe maximum length of the text (default is 50).

$intro

integerThe maximum length of the intro text (default is 30).

Response

stringThe abridged text.

truncate

Truncates text blocks over the specified character limit and closes all open HTML tags. The method will optionally not truncate an individual word, it will find the first space that is within the limit and truncate at that point. This method is UTF-8 safe.

truncate(string $text, integer $length, boolean $noSplit = true, boolean $allowHtml = true) : string
static
since

11.1

Arguments

$text

stringThe text to truncate.

$length

integerThe maximum length of the text.

$noSplit

booleanDon't split a word if that is where the cutoff occurs (default: true).

$allowHtml

booleanAllow HTML tags in the output, and close any open tags (default: true).

Response

stringThe truncated text.