Home
last modified time | relevance | path

Searched refs:CANONICAL (Results 76 – 100 of 190) sorted by path

12345678

/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDokuWikiStore.php47 const CANONICAL = Metadata::CANONICAL; define in ComboStrap\\Meta\\Store\\MetadataDokuWikiStore
146 throw new ExceptionBadState("A resource is mandatory", self::CANONICAL);
149 throw new ExceptionBadState("The DokuWiki metadata store is only for page resource", self::CANONICAL);
165 throw new ExceptionRuntime("A resource is mandatory", self::CANONICAL);
168 throw new ExceptionRuntime("The DokuWiki metadata store is only for page resource", self::CANONICAL);
337 LogUtility::error("Metadata Build Error", self::CANONICAL, $e);
/plugin/combo/ComboStrap/
H A DMetaManagerMenuItem.php26 const CANONICAL = "metadata"; define in ComboStrap\\MetaManagerMenuItem
35 $snippetManager->attachJavascriptFromComponentId(self::CANONICAL);
H A DMetadataFrontmatterStore.php26 const CANONICAL = self::NAME; define in ComboStrap\\MetadataFrontmatterStore
149 throw new ExceptionRuntime("Error while synchronizing data in the frontmatter", self::CANONICAL, 1, $e);
H A DMetadataStoreTransfer.php12 const CANONICAL = "meta-store-transfer"; define in ComboStrap\\MetadataStoreTransfer
80 LogUtility::warning("The meta ($originalMetaKey) was not found", self::CANONICAL, $e);
102 ->setCanonical(Metadata::CANONICAL);
110 $this->messages[] = Message::createWarningMessage("The metadata ($originalMetaKey) is unknown and was not persisted")->setCanonical(Metadata::CANONICAL);
H A DModificationDate.php111 return Metadata::CANONICAL;
H A DOutline.php26 const CANONICAL = "outline";
28 const CONTEXT = self::CANONICAL; define in ComboStrap\\Outline
247 LogUtility::internalError("The level was not present on the heading call", self::CANONICAL);
253 throw new ExceptionRuntimeInternal("This is not a dokuwiki header call", self::CANONICAL);
271 throw new ExceptionRuntimeInternal("The node is not added multiple time, this error should not fired. Error:{$e->getMessage()}", self::CANONICAL, 1, $e);
288 LogUtility::warning($message, self::CANONICAL);
306 throw new ExceptionRuntimeInternal("The node is not added multiple time, this error should not fired. Error:{$e->getMessage()}", self::CANONICAL, 1, $e);
319 throw new ExceptionRuntimeInternal("The node is not added multiple time, this error should not fired. Error:{$e->getMessage()}", self::CANONICAL, 1, $e);
481 throw new ExceptionRuntimeInternal("Error while adding a section during the outline merge. Error: {$e->getMessage()}", self::CANONICAL, 1, $e);
H A DOutlineSection.php8 const CANONICAL = "outline"; define in ComboStrap\\OutlineSection
199 LogUtility::internalError("The level ($level) could not be cast to an integer", self::CANONICAL);
H A DOutlineVisitor.php156 LogUtility::error("Error while capturing the feature images. Error: " . $e->getMessage(), Outline::CANONICAL, $e);
H A DPageDescription.php43 public const DESCRIPTION_COMBO_ORIGIN = syntax_plugin_combo_frontmatter::CANONICAL;
H A DPageExplorerTag.php17 public const CANONICAL = "page-explorer"; define in ComboStrap\\PageExplorerTag
109 LogUtility::error("The given leaf page ($page) does not exist and was not added to the page-explorer tree", self::CANONICAL);
117 ->setLogicalTag(self::CANONICAL . "-tree-$type")
125 LogUtility::error("Error while rendering the leaf. Error: {$e->getMessage()}", self::CANONICAL);
135 LogUtility::error("Error while rendering the default tree page. Error: {$e->getMessage()}", self::CANONICAL);
164 return self::CANONICAL . "-$type";
288 $id = IdManager::getOrCreate()->generateNewHtmlIdForComponent(PageExplorerTag::CANONICAL);
378 ->setLogicalTag(PageExplorerTag::CANONICAL)
402 ->setLogicalTag(PageExplorerTag::CANONICAL . "-{$pageExplorerType}-{$indexPageType}")
448 ->setLogicalTag(PageExplorerTag::CANONICAL
[all...]
H A DPageImageTag.php14 public const CANONICAL = PageImageTag::TAG; define in ComboStrap\\PageImageTag
105 LogUtility::warning("Error while creating the fetcher for the feature image ($imagePath) and the page ($contextPage). Error: {$e->getMessage()}", self::CANONICAL, $e);
118 LogUtility::warning("Error while creating the ancestor image handler for the image ($ancestor) and the page ($contextPage). Error: {$e->getMessage()}", self::CANONICAL, $e);
152 LogUtility::warning("The width ($width) is not a valid length and was discarded", self::CANONICAL, $e);
160 LogUtility::warning("The height ($height) is not a valid length and was discarded", self::CANONICAL, $e);
176 LogUtility::warning("Error while creating the first image handler for the image ($firstImagePath) and the page ($contextPage). Error: {$e->getMessage()}", self::CANONICAL, $e);
183 LogUtility::warning("Error while creating the vignette for the page ($contextPage). Error: {$e->getMessage()}", self::CANONICAL, $e);
190 LogUtility::info("No page image could be find for the page ($path)", PageImageTag::CANONICAL);
196 LogUtility::error("The image ($pageImageProcessing) is an unknown page image type", PageImageTag::CANONICAL);
215 LogUtility::error("The image could not be build. Error: {$e->getMessage()}", PageImageTag::CANONICAL,
[all...]
H A DPagePublicationDate.php133 LogUtility::error("Internal Error: the date format is not valid. Error: {$e->getMessage()}", self::CANONICAL);
H A DPageRules.php20 const CANONICAL = "page:rules"; define in ComboStrap\\PageRules
176 LogUtility::error("There was a problem during the page rules update. Error: {$e->getMessage()}", self::CANONICAL);
H A DPageSql.php19 const CANONICAL = "sql"; define in ComboStrap\\PageSql
H A DPageSqlTreeListener.php32 const CANONICAL = PageSql::CANONICAL; define in ComboStrap\\PageSqlTreeListener
250 LogUtility::msg("The value of the depth attribute ($text) is not an integer", LogUtility::LVL_MSG_ERROR, self::CANONICAL);
255 LogUtility::msg("The requested page is unknown and is mandatory with the depth attribute", LogUtility::LVL_MSG_ERROR, self::CANONICAL);
267 LogUtility::error("The value of the column $this->actualPredicateColumn ($text) could not be transformed as a number. Error: {$e->getMessage()}", self::CANONICAL);
362 LogUtility::msg("The page is unknown. A Page SQL with backlinks should be asked within a page request scope.", LogUtility::LVL_MSG_ERROR, PageSql::CANONICAL);
370 LogUtility::warning("Descendants should be asked from an index page.", PageSql::CANONICAL);
386 LogUtility::msg("The page is unknown. A Page SQL with a depth attribute should be asked within a page request scope. The start depth has been set to 0", LogUtility::LVL_MSG_ERROR, PageSql::CANONICAL);
H A DPageUrlPath.php57 public const CANONICAL = "page:url"; define in ComboStrap\\PageUrlPath
155 return self::CANONICAL;
H A DPanelTag.php21 public const CANONICAL = PanelTag::PANEL_LOGICAL_MARKUP; define in ComboStrap\\PanelTag
H A DPathTreeNode.php9 const CANONICAL = "path-tree"; define in ComboStrap\\PathTreeNode
45 throw new ExceptionRuntimeInternal("We shouldn't add the node two times. ", self::CANONICAL, 1, $e);
H A DPermalinkTag.php16 public const CANONICAL = PermalinkTag::TAG; define in ComboStrap\\PermalinkTag
187 LogUtility::warning($errorMessage, PermalinkTag::CANONICAL);
H A DPipelineTag.php12 public const CANONICAL = PipelineTag::TAG; define in ComboStrap\\PipelineTag
38 LogUtility::warning("The content tag with the name ($actualName) is unknown, the captured content may be not good.",self::CANONICAL);
H A DPipelineUtility.php281 throw new ExceptionBadSyntax("The format method allows for now only date. The value ($value) is not a date.", PipelineTag::CANONICAL);
309 LogUtility::error("Internal Error: No default locale could be determined. The locale was set to $locale", DateTag::CANONICAL);
H A DQualityDynamicMonitoringOverwrite.php43 return QualityMessageHandler::CANONICAL;
H A DQualityMenuItem.php31 const CANONICAL = "quality"; define in ComboStrap\\QualityMenuItem
46 $snippetManager->attachJavascriptFromComponentId(self::CANONICAL);
49 $snippetManager->attachCssInternalStylesheet(self::CANONICAL);
H A DQualityTag.php12 const CANONICAL = ":dynamic-quality-monitoring"; define in ComboStrap\\QualityTag
107 $docLink = PluginUtility::getDocumentationHyperLink(self::CANONICAL, "configuration");
H A DRasterImageLink.php36 const CANONICAL = FetcherRaster::CANONICAL; define in ComboStrap\\RasterImageLink
54 throw new ExceptionBadArgument("The mime value ($mime) is not a supported raster image.", self::CANONICAL);
78 ->setLogicalTag(self::CANONICAL);
144 LogUtility::warning("The variable (" . self::CONF_RESPONSIVE_IMAGE_MARGIN . ") has a value ($imageMargin) that is not a valid length.", self::CANONICAL, $e);

12345678