/template/strap/ComboStrap/ |
D | LogUtility.php | 78 * @param string $canonical - the canonical 81 …public static function msg(string $message, int $level = self::LVL_MSG_ERROR, string $canonical = … argument 87 self::log2file($e->getMessage(), LogUtility::LVL_MSG_ERROR, $canonical); 93 self::log2FrontEnd($message, $level, $canonical); 108 self::log2file($message, $level, $canonical, $e); 125 * @param string|null $canonical 128 …static function log2file(?string $msg, int $logLevel = self::LVL_MSG_ERROR, ?string $canonical = s… argument 141 if (!empty($canonical)) { 142 $prefix .= ' - ' . $canonical; 167 * @param string $canonical [all …]
|
D | ExceptionCompile.php | 19 private $canonical; variable in ComboStrap\\ExceptionCompile 21 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument 23 $this->canonical = $canonical; 32 return $this->canonical;
|
D | ExceptionRuntime.php | 21 private $canonical; variable in ComboStrap\\ExceptionRuntime 23 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument 25 $this->canonical = $canonical; 47 return $this->canonical;
|
D | Message.php | 28 private $canonical = "support"; variable in ComboStrap\\Message 89 function setCanonical($canonical): Message argument 91 $this->canonical = $canonical; 178 …. '">' . $firedByLang . PluginUtility::getDocumentationHyperLink($this->canonical, $this->signatur… 236 LogUtility::msg($content, $type, $this->canonical); 241 if ($this->canonical !== null) { 242 $canonicalPath = WikiPath::createFromUnknownRoot($this->canonical); 244 return PluginUtility::getDocumentationHyperLink($this->canonical, $label, false);
|
D | HttpResponse.php | 37 private $canonical = "support"; variable in ComboStrap\\HttpResponse 152 …set for this soft exit, the default was set instead", LogUtility::LVL_MSG_ERROR, $this->canonical); 171 …d Http Response: $this->status : {$this->getBody()}", LogUtility::LVL_MSG_ERROR, $this->canonical); 228 function setCanonical($canonical): HttpResponse argument 230 $this->canonical = $canonical;
|
D | ExceptionNotEquals.php | 19 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument 21 parent::__construct($message, $canonical, $code, $previous);
|
D | Canonical.php | 78 public static function createFromValue(string $canonical): Canonical argument 82 ->setValue($canonical);
|
D | MarkupPath.php | 60 private $canonical; variable in ComboStrap\\MarkupPath 275 function setCanonical($canonical): MarkupPath argument 277 $this->canonical 278 ->setValue($canonical) 344 return $this->canonical->getValueFromStoreOrDefault(); 1227 return $this->canonical->getValue(); 1239 return $this->canonical->getDefaultValue(); 1637 $this->canonical = Canonical::createForPage($this);
|
D | DatabasePageRow.php | 270 static function createFromCanonical($canonical): DatabasePageRow argument 273 WikiPath::addRootSeparatorIfNotPresent($canonical); 276 $row = $databasePage->getDatabaseRowFromAttribute(Canonical::PROPERTY_NAME, $canonical); 490 $canonical = Canonical::createForPage($markupPath)->getValue(); 491 return $this->getDatabaseRowFromCanonical($canonical->toAbsoluteId());
|
D | PluginUtility.php | 523 …static function getDocumentationHyperLink($canonical, $label, bool $withIcon = true, $tooltip = ""… argument 551 $path = str_replace(":", "/", $canonical);
|
/template/strap/ComboStrap/Web/ |
D | Sanitizer.php | 12 public static function sanitize($content, $suffixMessage = "", $canonical = "security") argument 22 …elf::logAndReturnTheEmptyString("You can't used a $forbiddenNode node$suffixMessage.", $canonical); 32 …rn self::logAndReturnTheEmptyString("You can't used a style attribute $suffixMessage", $canonical); 38 …ReturnTheEmptyString("You can't used an callback handler on attribute $suffixMessage", $canonical); 51 private static function logAndReturnTheEmptyString(string $string, $canonical): string argument 53 LogUtility::msg($string, LogUtility::LVL_MSG_ERROR, $canonical);
|
/template/strap/action/ |
D | canonical.php | 61 $canonical = $page->getCanonical()->toAbsoluteId(); 62 $JSINFO[Canonical::PROPERTY_NAME] = $canonical; 76 … $pageViewCanonical = str_replace(WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT, "/", $canonical);
|
D | autofrontmatter.php | 44 $canonical = $page->getCanonicalOrDefault(); 48 "canonical":"{$canonical}",
|
/template/strap/ComboStrap/Meta/Form/ |
D | FormMetaField.php | 77 private string $canonical; variable in ComboStrap\\Meta\\Form\\FormMetaField 359 if (!isset($this->canonical)) { 363 return Canonical::createFromValue($this->canonical) 369 function setCanonical(string $canonical): FormMetaField argument 371 $this->canonical = $canonical;
|
/template/strap/vendor/php-webdriver/webdriver/ |
D | CHANGELOG.md | 110 - Avoid "path is not canonical" error when uploading file to Chromedriver.
|