PHP 클래스 Essence\Provider\Collection

파일 보기 프로젝트 열기: benjamminf/craft-embedded-assets 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_Container Essence\Di\Container Dependency injection container.

공개 메소드들

메소드 설명
__construct ( Container $Container ) Constructor.
hasProvider ( string $url ) : boolean Tells if a provider can handle the given url.
providers ( string $url ) : array Finds providers of the given url.

보호된 메소드들

메소드 설명
_matches ( string | callable $filter, string $url ) : boolean Tells if an URL matches a filter.

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( Container $Container )
$Container Essence\Di\Container Dependency injection container used to build providers.

_matches() 보호된 메소드

Tells if an URL matches a filter.
protected _matches ( string | callable $filter, string $url ) : boolean
$filter string | callable Regex or callback to filter URL.
$url string URL to filter.
리턴 boolean Whether the URL matches the filter or not.

hasProvider() 공개 메소드

Tells if a provider can handle the given url.
public hasProvider ( string $url ) : boolean
$url string An url which may be extracted.
리턴 boolean The url provider if any, otherwise null.

providers() 공개 메소드

Finds providers of the given url.
public providers ( string $url ) : array
$url string An url which may be extracted.
리턴 array An array of Essence\Provider.

프로퍼티 상세

$_Container 보호되어 있는 프로퍼티

Dependency injection container.
protected Container,Essence\Di $_Container
리턴 Essence\Di\Container