Lines Matching refs:parameterPath
256 …* @param string $parameterPath - the path in a wiki form that may be relative - if the path is bla…
261 …public static function createMarkupPathFromPath(string $parameterPath, string $rev = null): WikiPa… argument
265 if ($parameterPath == "") {
268 if (WikiPath::isNamespacePath($parameterPath)) {
270 if ($parameterPath[0] !== self::CURRENT_PATH_CHARACTER) {
274 return new WikiPath($parameterPath, self::MARKUP_DRIVE, $rev);
280 …if ($parameterPath === self::CURRENT_PARENT_PATH_CHARACTER . self::NAMESPACE_SEPARATOR_DOUBLE_POIN…
287 …textPath) does not have a grand parent, therefore the relative path ($parameterPath) is invalid.",…
305 $defaultPath = $parameterPath;
306 $lastName = $parameterPath;
307 $lastSeparator = strrpos($parameterPath, self::NAMESPACE_SEPARATOR_DOUBLE_POINT);
309 $lastName = substr($parameterPath, $lastSeparator);
336 … $markupWikiPath = new WikiPath($parameterPath . '.' . $markupExtension, self::MARKUP_DRIVE, $rev);