Home
last modified time | relevance | path

Searched refs:IFetcher (Results 1 – 20 of 20) sorted by relevance

/plugin/combo/ComboStrap/
H A DIFetcher.php20 * * a {@link IFetcher::buildFromUrl() URL}
21 * * a {@link IFetcher::buildFromTagAttributes() attributes}
40 interface IFetcher interface
78 * You can also ask it via {@link IFetcher::getFetchPath()} but it will
86 * This method calls the function {@link IFetcher::buildFromTagAttributes()}
88 * @return IFetcher
90 public function buildFromUrl(Url $url): IFetcher;
94 * @return IFetcher
96 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher;
121 * @return IFetcher
[all...]
H A DIFetcherAbs.php17 abstract class IFetcherAbs implements IFetcher
74 $url->setQueryParameter(IFetcher::CACHE_BUSTER_KEY, $buster);
85 $url->setQueryParameter(IFetcher::FETCHER_KEY, $fetcherName);
94 public function buildFromUrl(Url $url): IFetcher
110 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher
195 * @param string $urlFragment a fragment added to the {@link IFetcher::getFetchUrl() fetch URL}
197 public function setRequestedUrlFragment(string $urlFragment): IFetcher
221 public function process(): IFetcher
H A DFetcherCache.php28 private IFetcher $fetcher;
32 * @param IFetcher $fetcher
37 public function __construct(IFetcher $fetcher, array $keys = [])
53 * @param IFetcher $fetch
57 public static function createFrom(IFetcher $fetch, array $cacheKeys = []): FetcherCache
H A DFetcherTraitWikiPath.php30 * @return IFetcher
32 public function setSourcePath(WikiPath $path): IFetcher
40 * @return IFetcher
46 public function buildOriginalPathFromTagAttributes(TagAttributes $tagAttributes): IFetcher
H A DFetcherSystem.php25 $fetcherName = $fetchUrl->getQueryPropertyValue(IFetcher::FETCHER_KEY);
78 $fetcherName = $fetchUrl->getQueryPropertyValue(IFetcher::FETCHER_KEY);
H A DIFetcherString.php9 interface IFetcherString extends IFetcher
H A DIFetcherSource.php8 interface IFetcherSource extends IFetcher
H A DIFetcherPath.php12 interface IFetcherPath extends IFetcher
H A DMediaMarkup.php107 private IFetcher $fetcher;
176 public static function createFromFetcher(IFetcher $fetcher): MediaMarkup
879 * If you want to known the mime use {@link self::getFetcher()} then {@link IFetcher::getMime()}
899 * @param IFetcher $fetcher
902 private function setFetcher(IFetcher $fetcher): MediaMarkup
910 * @return IFetcher
912 public function getFetcher(): IFetcher
H A DFetcherPageSearch.php88 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher
H A DFetcherPage.php93 $url->deleteQueryParameter(IFetcher::FETCHER_KEY);
104 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher
H A DCacheLog.php28 public static function deleteCacheIfExistsAndLog(IFetcher $fetcher, string $event, string $message)
H A DFetcherMarkupWebcode.php66 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher
H A DFetcherAppPages.php274 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher
H A DExecutionContext.php142 * @var IFetcher - the fetcher that takes into account the HTTP request
144 private IFetcher $executingMainFetcher;
H A DFetcherRailBar.php65 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher
/plugin/combo/action/
H A Dstaticresource.php12 use ComboStrap\IFetcher; alias
45 * Enable an infinite cache on static resources (image, script, ...) with a {@link IFetcher::CACHE_BUSTER_KEY}
80 $fetcher = $_GET[IFetcher::FETCHER_KEY] ?? null;
152 $busterKey = $_GET[IFetcher::CACHE_BUSTER_KEY];
370 if (in_array($key, ["media", "tok", IFetcher::CACHE_BUSTER_KEY])) {
H A Dcache.php9 use ComboStrap\IFetcher; alias
128 if (isset($_REQUEST[IFetcher::CACHE_BUSTER_KEY])) {
H A Ddocustom.php13 use ComboStrap\IFetcher;
178 ->addQueryParameter(IFetcher::FETCHER_KEY, $fetcherName);
11 use ComboStrap\IFetcher; global() alias
/plugin/combo/ComboStrap/Api/
H A DApiRouter.php11 use ComboStrap\IFetcher; alias
46 if ($call !== self::AJAX_CALL_VALUE && !$fetchUrl->hasProperty(IFetcher::FETCHER_KEY)) {