/plugin/combo/ComboStrap/Web/ |
H A D | UrlEndpoint.php | 9 use ComboStrap\Web\Url; alias 30 public static function createFetchUrl(): Url 32 return Url::createEmpty()->setPath(self::LIB_EXE_FETCH_PHP); 35 public static function createDetailUrl(): Url 37 return Url::createEmpty()->setPath(self::LIB_EXE_DETAIL_PHP); 41 public static function createComboStrapUrl(): Url 43 return Url::createEmpty() 48 public static function createSupportUrl(): Url 56 public static function createDokuUrl(): Url 59 return Url [all...] |
H A D | Url.php | 28 * Class Url 34 class Url extends PathAbs 106 * Note: Url validation is hard with regexp 160 public static function createEmpty(): Url 162 return new Url(); 168 public static function createFromGetOrPostGlobalVariable(): Url 177 $url = Url::createEmpty(); 201 * with {@link Url::AMPERSAND_URL_ENCODED_FOR_HTML} 276 public static function createFromString(string $url): Url 278 return new Url( 37 class Url extends PathAbs global() class [all...] |
H A D | UrlRewrite.php | 48 public static function rewrite(Url $url) 56 * the conditional {@link Url::toAbsoluteUrlString()} 80 * @param Url $url 83 private static function pathRewrite(Url $url) 102 LogUtility::internalError("The media query should be present for a fetch. No Url rewrite could be done."); 115 LogUtility::internalError("The media query should be present for a detail page fetch. No Url rewrite could be done."); 172 static function baseRewrite(Url $url) 205 LogUtility::error("Combostrap does not support the <a href=\"$rewriteOption2\">Url Dokuwiki Rewriting (Option 2)</a> because of the <a href=\"$hrefPermanentFunctionality\"> permanent Url functionality</a>. You should disable it and use the <a href=\"$rewriteOption1\">Web Server Option (Option 1)</a> if you want <a href=\"$hrefNiceUrl\">nice URL</a>.", self::CANONICAL); 13 use ComboStrap\Web\Url; global() alias
|
/plugin/combo/ComboStrap/ |
H A D | IFetcher.php | 5 use ComboStrap\Web\Url; alias 61 * @param Url|null $url - the url to be able to pass along in the hierarchy 62 * @return Url 64 function getFetchUrl(Url $url = null): Url; 87 * @param Url $url 90 public function buildFromUrl(Url $url): IFetcher;
|
H A D | FetcherRawLocalPath.php | 5 use ComboStrap\Web\Url; alias 39 public static function createLocalFromFetchUrl(Url $fetchUrl): FetcherRawLocalPath 48 * @return Url - an URL to download the media 50 function getFetchUrl(Url $url = null): Url
|
H A D | IFetcherAbs.php | 6 use ComboStrap\Web\Url; alias 40 * @param Url|null $url 41 * @return Url 43 function getFetchUrl(Url $url = null): Url 94 public function buildFromUrl(Url $url): IFetcher
|
H A D | FetcherPdf.php | 5 use ComboStrap\Web\Url; alias 14 public function buildFromUrl(Url $url): FetcherPdf 38 function getFetchUrl(Url $url = null): Url
|
H A D | FetcherSystem.php | 5 use ComboStrap\Web\Url; alias 15 * @param Url $fetchUrl 21 public static function createPathFetcherFromUrl(Url $fetchUrl): IFetcherPath 74 public static function createFetcherStringFromUrl(Url $fetchUrl): IFetcherString
|
H A D | Canonical.php | 9 use ComboStrap\Web\Url; alias 175 * The Url of the local web server 178 public function getLocalUrl(): Url 186 * @return Url - the url of the combostrap web server for documentation 189 public function getComboStrapUrlForDocumentation(): Url 194 return Url::createFromString(PluginUtility::$INFO_PLUGIN['url'])
|
H A D | Path.php | 6 use ComboStrap\Web\Url; alias 18 * A lot of overlap with {@link Url} 117 * @return Url - the local URL 118 * For external path (ie {@link Url}, there is no {@link IFetcher} implementation 121 function getUrl(): Url;
|
H A D | HttpRequest.php | 6 use ComboStrap\Web\Url; alias 21 private Url $url; 28 public function __construct(Url $url) 62 public static function createRequest(Url $url): HttpRequest
|
H A D | FetcherAppPages.php | 7 use ComboStrap\Web\Url; alias 34 * @param Url|null $url 35 * @return Url 39 function getFetchUrl(Url $url = null): Url
|
H A D | FetcherPage.php | 7 use ComboStrap\Web\Url; alias 48 public static function createPageFragmentFetcherFromUrl(Url $fetchUrl): FetcherPage 67 * @param Url|null $url 68 * @return Url 72 function getFetchUrl(Url $url = null): Url
|
H A D | FetcherTraitWikiPath.php | 5 use ComboStrap\Web\Url; alias 13 * * add the {@link buildURLparams() url params to the fetch Url} 101 * @param Url $url 105 public function addLocalPathParametersToFetchUrl(Url $url, string $wikiIdKey): void
|
H A D | MediaLink.php | 16 use ComboStrap\Web\Url; alias 86 public function getFetchUrl(): Url
|
H A D | FetcherRaster.php | 6 use ComboStrap\Web\Url; alias 73 public static function createRasterFromFetchUrl(Url $fetchUrl): FetcherRaster 89 public function getFetchUrl(Url $url = null): Url
|
H A D | MarkupRef.php | 5 use ComboStrap\Web\Url; alias 64 private ?Url $url = null; 80 $this->url = Url::createEmpty(); 101 $this->url = Url::createFromString("mailto:$email"); 104 $this->url = Url::createFromString("mailto:$ref"); 122 $this->url = Url::createFromString($ref); 192 $this->url = Url::createEmpty()->setFragment($fragment); 443 function getUrl(): Url
|
H A D | FetcherScreenshot.php | 5 use ComboStrap\Web\Url; alias 33 private Url $url; 36 public static function createSnapshotFromUrl(Url $urlToSnapshot): FetcherScreenshot 43 function getFetchUrl(Url $url = null): Url 65 $this->url = Url::createFromString($urlString); 236 private function setUrlToSnapshot(Url $urlToSnapshot): FetcherScreenshot 245 private function getUrlToSnapshot(): Url
|
H A D | FetcherMarkupWebcode.php | 9 use ComboStrap\Web\Url; alias 46 function getFetchUrl(Url $url = null): Url
|
/plugin/elasticsearch/vendor/nyholm/dsn/src/ |
H A D | DsnParser.php | 10 use Nyholm\Dsn\Configuration\Url; alias 76 public static function parseUrl(string $dsn): Url 79 if (!$dsn instanceof Url) { 154 return new Url($scheme, $parts['host'], $parts['port'] ?? null, $parts['path'] ?? null, self::getQuery($parts), $authentication);
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/ |
H A D | ClientConfiguration.php | 6 use Nyholm\Dsn\Configuration\Url; alias 78 /** @var Url $dsn */ 84 /** @var Url $arg */ 172 private static function parseDsn(Url $dsn): array
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/ |
H A D | Url.php | 20 class Url extends \Google\Model class 96 class_alias(Url::class, 'Google_Service_PeopleService_Url');
|
/plugin/findologicxmlexport/vendor/findologic/libflexport/tests/FINDOLOGIC/Export/Tests/ |
H A D | DataElementsTest.php | 17 use FINDOLOGIC\Export\Data\Url; alias 95 'Url with empty value' => ['', Url::class, EmptyValueNotAllowedException::class], 96 'Url with value' => ['value', Url::class, null]
|
/plugin/authfacebook/lib/Helpers/ |
H A D | FacebookRedirectLoginHelper.php | 33 use Facebook\Url\FacebookUrlDetectionHandler; 34 use Facebook\Url\FacebookUrlManipulator; 35 use Facebook\Url\UrlDetectionInterface;
|
/plugin/combo/action/ |
H A D | docustom.php | 20 use ComboStrap\Web\Url; 140 $id = Url::createFromGetOrPostGlobalVariable()->getPropertyValue(DokuwikiId::DOKUWIKI_ID_ATTRIBUTE); 177 $url = Url::createFromGetOrPostGlobalVariable() 18 use ComboStrap\Web\Url; global() alias
|