PHP Класс Essence\Replacer

Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$_Extractor Extractor Extractor.
$_urlPattern string A pattern to match URLs.

Открытые методы

Метод Описание
__construct ( Extractor $Extractor ) Constructor.
replace ( string $text, callable $template = null, array $options = [] ) : string Replaces URLs in the given text by media informations if they point on an extractable resource.
setUrlPattern ( string $pattern ) Sets the URL pattern for replacements.

Защищенные методы

Метод Описание
_defaultTemplate ( ) : Closure Returns a default templating callback for replace().
_replaceFunction ( callable $template, array $options ) : Closure Returns a function used to replace URLs by informations.

Описание методов

__construct() публичный Метод

Constructor.
public __construct ( Extractor $Extractor )
$Extractor Extractor Extractor.

_defaultTemplate() защищенный Метод

Returns a default templating callback for replace().
См. также: replace()
protected _defaultTemplate ( ) : Closure
Результат Closure Templating function.

_replaceFunction() защищенный Метод

Returns a function used to replace URLs by informations.
См. также: replace()
protected _replaceFunction ( callable $template, array $options ) : Closure
$template callable Templating callback.
$options array Custom options to be interpreted by a provider.
Результат Closure Function.

replace() публичный Метод

By default, links will be replaced by the html property of Media. If $template is a callable function, it will be used to generate replacement strings, given a Media object.
public replace ( string $text, callable $template = null, array $options = [] ) : string
$text string Text in which to replace URLs.
$template callable Templating callback.
$options array Custom options to be interpreted by a provider.
Результат string Text with replaced URLs.

setUrlPattern() публичный Метод

Sets the URL pattern for replacements.
См. также: replace()
public setUrlPattern ( string $pattern )
$pattern string URL pattern.

Описание свойств

$_Extractor защищенное свойство

Extractor.
protected Extractor,Essence $_Extractor
Результат Extractor

$_urlPattern защищенное свойство

A pattern to match URLs.
См. также: http://daringfireball.net/2010/07/improved_regex_for_matching_urls
protected string $_urlPattern
Результат string