PHP Класс Blade, someline-starter

Наследование: extends Illuminate\Support\Facades\Blade
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
compile ( string $path = null ) : void Compile the view at the given path.
compileEchoDefaults ( string $value ) : string Compile the default values for the echo statement.
compileString ( string $value ) : string Compile the given Blade template contents.
directive ( string $name, callable $handler ) : void Register a handler for custom directives.
extend ( callable $compiler ) : void Register a custom Blade compiler.
getCompiledPath ( string $path ) : string Get the path to the compiled version of a view.
getContentTags ( ) : string Gets the content tags used for the compiler.
getCustomDirectives ( ) : array Get the list of custom directives.
getEscapedContentTags ( ) : string Gets the escaped content tags used for the compiler.
getExtensions ( ) : array Get the extensions used by the compiler.
getPath ( ) : string Get the path currently being compiled.
getRawTags ( ) : array Gets the raw tags used by the compiler.
isExpired ( string $path ) : boolean Determine if the view at the given path is expired.
setContentTags ( string $openTag, string $closeTag, boolean $escaped = false ) : void Sets the content tags used for the compiler.
setEchoFormat ( string $format ) : void Set the echo format to be used by the compiler.
setEscapedContentTags ( string $openTag, string $closeTag ) : void Sets the escaped content tags used for the compiler.
setPath ( string $path ) : void Set the path currently being compiled.
setRawTags ( string $openTag, string $closeTag ) : void Sets the raw tags used for the compiler.

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

compile() публичный статический Метод

Compile the view at the given path.
public static compile ( string $path = null ) : void
$path string
Результат void

compileEchoDefaults() публичный статический Метод

Compile the default values for the echo statement.
public static compileEchoDefaults ( string $value ) : string
$value string
Результат string

compileString() публичный статический Метод

Compile the given Blade template contents.
public static compileString ( string $value ) : string
$value string
Результат string

directive() публичный статический Метод

Register a handler for custom directives.
public static directive ( string $name, callable $handler ) : void
$name string
$handler callable
Результат void

extend() публичный статический Метод

Register a custom Blade compiler.
public static extend ( callable $compiler ) : void
$compiler callable
Результат void

getCompiledPath() публичный статический Метод

Get the path to the compiled version of a view.
public static getCompiledPath ( string $path ) : string
$path string
Результат string

getContentTags() публичный статический Метод

Gets the content tags used for the compiler.
public static getContentTags ( ) : string
Результат string

getCustomDirectives() публичный статический Метод

Get the list of custom directives.
public static getCustomDirectives ( ) : array
Результат array

getEscapedContentTags() публичный статический Метод

Gets the escaped content tags used for the compiler.
public static getEscapedContentTags ( ) : string
Результат string

getExtensions() публичный статический Метод

Get the extensions used by the compiler.
public static getExtensions ( ) : array
Результат array

getPath() публичный статический Метод

Get the path currently being compiled.
public static getPath ( ) : string
Результат string

getRawTags() публичный статический Метод

Gets the raw tags used by the compiler.
public static getRawTags ( ) : array
Результат array

isExpired() публичный статический Метод

Determine if the view at the given path is expired.
public static isExpired ( string $path ) : boolean
$path string
Результат boolean

setContentTags() публичный статический Метод

Sets the content tags used for the compiler.
public static setContentTags ( string $openTag, string $closeTag, boolean $escaped = false ) : void
$openTag string
$closeTag string
$escaped boolean
Результат void

setEchoFormat() публичный статический Метод

Set the echo format to be used by the compiler.
public static setEchoFormat ( string $format ) : void
$format string
Результат void

setEscapedContentTags() публичный статический Метод

Sets the escaped content tags used for the compiler.
public static setEscapedContentTags ( string $openTag, string $closeTag ) : void
$openTag string
$closeTag string
Результат void

setPath() публичный статический Метод

Set the path currently being compiled.
public static setPath ( string $path ) : void
$path string
Результат void

setRawTags() публичный статический Метод

Sets the raw tags used for the compiler.
public static setRawTags ( string $openTag, string $closeTag ) : void
$openTag string
$closeTag string
Результат void