Lines Matching defs:absolutePath
112 protected $absolutePath;
154 $this->absolutePath = $path;
167 LogUtility::error("The current relative path ({$this->absolutePath}) returns an error: {$e->getMessage()}", self::CANONICAL);
179 LogUtility::error("The parent relative path ({$this->absolutePath}) returns an error: {$e->getMessage()}", self::CANONICAL);
207 $this->absolutePath = $absolutePathString;
235 if (strpos($this->absolutePath, $comboInterWikiScheme) === 0) {
236 $pathPart = substr($this->absolutePath, strlen($comboInterWikiScheme));
240 WikiPath::addRootSeparatorIfNotPresent($this->absolutePath);
241 $this->id = $this->toDokuWikiIdDriveContextual($this->absolutePath);
791 $actualNames = explode(self::NAMESPACE_SEPARATOR_DOUBLE_POINT, $this->absolutePath);
877 return $this->absolutePath;
947 return $this->absolutePath;
1024 return new WikiPath($this->absolutePath, $this->drive, $this->rev);
1084 if ($this->absolutePath[strlen($this->absolutePath) - 1] !== WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT) {
1085 $path = $this->absolutePath . WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT . $name;
1087 $path = $this->absolutePath . $name;
1097 $absolutePath = self::removeRootSepIfPresent($this->absolutePath);
1098 $uri = "{$this->getScheme()}://$this->drive$driveSep$absolutePath";
1122 if (!WikiPath::isNamespacePath($this->absolutePath)) {
1146 $isNamespacePath = self::isNamespacePath($this->absolutePath);