Home
last modified time | relevance | path

Searched refs:self (Results 251 – 275 of 2449) sorted by last modified time

1...<<11121314151617181920>>...98

/plugin/combo/ComboStrap/
H A DFetcherPageSearch.php28 return self::NAME;
100 return self::NAME;
H A DPagePublicationDate.php85 return self::PROPERTY_NAME;
133 LogUtility::error("Internal Error: the date format is not valid. Error: {$e->getMessage()}", self::CANONICAL);
H A DPageRules.php176 LogUtility::error("There was a problem during the page rules update. Error: {$e->getMessage()}", self::CANONICAL);
H A DFetcherRailBar.php26 const CANONICAL = self::NAME;
42 const KNOWN_LAYOUT = [self::FIXED_LAYOUT, self::OFFCANVAS_LAYOUT, self::BOTH_LAYOUT];
56 return StyleAttribute::addComboStrapSuffix(self::CANONICAL);
74 $viewPortWidth = $tagAttributes->getValueAndRemoveIfPresent(self::VIEWPORT_WIDTH);
79 throw new ExceptionBadArgument("The viewport width is not a valid integer. Error:{$e->getMessage()}", self::CANONICAL);
85 $layout = $tagAttributes->getValueAndRemoveIfPresent(self::LAYOUT_ATTRIBUTE);
90 throw new ExceptionBadArgument("The layout is not a valid. Error:{$e->getMessage()}", self::CANONICAL);
144 case self
[all...]
H A DFetcherRaster.php61 return self::createEmptyRaster()
75 $fetchImageRaster = self::createEmptyRaster();
152 $this->imageWidth = self::FAKE_LENGTH_FOR_BROKEN_IMAGES;
153 $this->imageWeight = self::FAKE_LENGTH_FOR_BROKEN_IMAGES;
164 throw new ExceptionBadSyntax("We couldn't retrieve the type and dimensions of the image ($this). The image format seems to be not supported.", self::CANONICAL);
168 throw new ExceptionBadSyntax("We couldn't retrieve the width of the image ($this)", self::CANONICAL);
172 throw new ExceptionBadSyntax("We couldn't retrieve the height of the image ($this)", self::CANONICAL);
211 LogUtility::info("For the image ($this), the requested width of ($requestedWidth) can not be bigger than the intrinsic width of ($mediaWidth). The width was then set to its natural width ($mediaWidth)", self::CANONICAL);
239 LogUtility::info("For the image ($this), the requested height of ($requestedHeight) can not be bigger than the intrinsic height of ($mediaHeight). The height was then set to its natural height ($mediaHeight)", self::CANONICAL);
260 LogUtility::info("For the image ($this), the calculated width of ($targetWidth) cannot be bigger than the intrinsic width of ($targetWidth). The requested width was then set to its natural width ($intrinsicWidth).", self
[all...]
H A DFetcherRawLocalPath.php22 $fetcherRaw = self::createEmpty();
95 return self::NAME;
H A DFetcherScreenshot.php47 $url->addQueryParameter(self::URL, $this->getUrlToSnapshot());
61 $urlString = $tagAttributes->getValue(self::URL);
108 self::WEB_DRIVER_ENDPOINT,
114 throw new ExceptionInternal("Web driver is not available at " . self::WEB_DRIVER_ENDPOINT . ". Did you run `chromedriver.exe --port=4444` ? Error: {$e->getMessage()}");
215 return self::CANONICAL;
255 return self::CANONICAL;
H A DFetcherSvg.php147 $fetcher = self::createSvgEmpty();
158 $fetchSvg = self::createSvgEmpty();
171 return self::createSvgEmpty()->setMarkup($markup, $name);
433 throw new ExceptionBadSyntaxRuntime($e->getMessage(), self::CANONICAL, 1, $e);
449 throw new ExceptionBadSyntaxRuntime($e->getMessage(), self::CANONICAL, 1, $e);
516 $url->addQueryParameter(self::REQUESTED_PRESERVE_ASPECT_RATIO_KEY, $this->getRequestedPreserveAspectRatio());
521 $url->addQueryParameter(self::REQUESTED_NAME_ATTRIBUTE, $this->getRequestedName());
597 $content = self::processAndGetMarkup();
728 LogUtility::internalError("root not possible, we should have a last name", self::CANONICAL);
941 $extraAttributes = TagAttributes::createEmpty(self
[all...]
H A DFetcherVignette.php29 const CANONICAL = self::VIGNETTE_FETCHER_NAME;
88 LogUtility::internalError("The path of the actual class cannot be determined", self::CANONICAL);
128 throw new ExceptionBadArgument("Error while getting the muted color. Error: {$e->getMessage()}", self::CANONICAL);
198 LogUtility::errorIfDevOrTest("Error while getting the modified date. Error: {$e->getMessage()}", self::CANONICAL);
205 LogUtility::errorIfDevOrTest("Error while formatting the modified date. Error: {$e->getMessage()}", self::CANONICAL);
231 case self::PNG_EXTENSION:
235 case self::JPG_EXTENSION:
236 case self::JPEG_EXTENSION:
239 case self::WEBP_EXTENSION:
287 case self
[all...]
H A DIndex.php30 if (self::$index === null) {
31 self::$index = new Index();
33 return self::$index;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/
H A DRuleStopState.php11 return self::RULE_STOP;
H A DStarBlockStartState.php11 return self::STAR_BLOCK_START;
H A DStarLoopEntryState.php27 return self::STAR_LOOP_ENTRY;
H A DStarLoopbackState.php11 return self::STAR_LOOP_BACK;
H A DTokensStartState.php11 return self::TOKEN_START;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DActionTransition.php48 return self::ACTION;
57 if (!$other instanceof self) {
H A DAtomTransition.php34 return self::ATOM;
43 return $other instanceof self
H A DEpsilonTransition.php49 return self::EPSILON;
58 return $other instanceof self
H A DNotSetTransition.php17 return self::NOT_SET;
26 return $other instanceof self
/plugin/combo/ComboStrap/PageSqlParser/
H A DPageSqlLexer.php604 self::initialize();
606 $this->interp = new LexerATNSimulator($this, self::$atn, self::$decisionToDFA, self::$sharedContextCache);
611 if (self::$atn !== null) {
617 $atn = (new ATNDeserializer())->deserialize(self::SERIALIZED_ATN);
624 self::$atn = $atn;
625 self::$decisionToDFA = $decisionToDFA;
626 self::$sharedContextCache = new PredictionContextCache();
633 return $vocabulary = $vocabulary ?? new VocabularyImpl(self
[all...]
H A DPageSqlParser.php232 self::initialize();
234 $this->interp = new ParserATNSimulator($this, self::$atn, self::$decisionToDFA, self::$sharedContextCache);
239 if (self::$atn !== null) {
245 $atn = (new ATNDeserializer())->deserialize(self::SERIALIZED_ATN);
252 self::$atn = $atn;
253 self::$decisionToDFA = $decisionToDFA;
254 self::$sharedContextCache = new PredictionContextCache();
264 return self
[all...]
/plugin/combo/renderer/
H A Danalytics.php59 self::RULE_CANONICAL_PRESENT,
60 self::RULE_DESCRIPTION_PRESENT,
61 self::RULE_FIXME,
62 self::RULE_INTERNAL_BACKLINKS_MIN,
63 self::RULE_INTERNAL_BROKEN_LINKS_MAX,
64 self::RULE_INTERNAL_LINKS_MIN,
65 self::RULE_OUTLINE_STRUCTURE,
66 self::RULE_TITLE_PRESENT,
67 self::RULE_WORDS_MINIMAL,
68 self
[all...]
H A Dxml.php18 const MODE = 'combo_'.self::FORMAT;
23 return self::FORMAT;
/plugin/combo/vendor/symfony/process/Pipes/
H A DUnixPipes.php131 $data = @fread($pipe, self::CHUNK_SIZE);
133 } while (isset($data[0]) && ($close || isset($data[self::CHUNK_SIZE - 1])));
/plugin/combo/ComboStrap/Tag/
H A DRelatedTag.php47 return self::renderForPage($contextPage, $tagAttributes);
56 ->setLogicalTag(self::TAG);
67 $relatedPages = self::getRelatedPagesOrderedByBacklinkCount($page, $max);
79 $backlinkId = $backlink[self::RELATED_PAGE_ID_PROP];
81 if ($backlinkId != self::MORE_PAGE_ID) {
84 $html .= $linkUtility->toAttributes(self::TAG)->toHtmlEnterTag("a");

1...<<11121314151617181920>>...98