Home
last modified time | relevance | path

Searched refs:message (Results 1 – 25 of 152) sorted by relevance

1234567

/template/strap/vendor/php-webdriver/webdriver/lib/Exception/
H A DWebDriverException.php15 * @param string $message
18 public function __construct($message, $results = null) argument
20 parent::__construct($message);
36 * @param string $message
87 public static function throwException($status_code, $message, $results) argument
93 throw new ElementClickInterceptedException($message, $results);
95 throw new ElementNotInteractableException($message, $results);
97 throw new InsecureCertificateException($message, $results);
99 throw new InvalidArgumentException($message, $results);
101 throw new InvalidCookieDomainException($message, $results);
[all …]
/template/strap/ComboStrap/
H A DLogUtility.php76 * @param string $message
81 …public static function msg(string $message, int $level = self::LVL_MSG_ERROR, string $canonical = … argument
85 self::messageNotEmpty($message);
93 self::log2FrontEnd($message, $level, $canonical);
108 self::log2file($message, $level, $canonical, $e);
114 self::throwErrorIfTest($level, $message, $e);
170 …public static function log2FrontEnd($message, $level, string $canonical = self::SUPPORT_CANONICAL,… argument
174 self::messageNotEmpty($message);
176 $message = $e->getMessage();
202 echo "$message\n";
[all …]
H A DPipelineUtility.php53 $message = null;
58 $message = substr($processedExpression, 0, $secondQuoteChar);
65 if ($message == null) {
68 $message = substr($processedExpression, 0, $pipeCharPosition);
71 if ($message == null) {
74 $message = $processedExpression;
85 $message = trim(substr($processedExpression, 0, $firstPipeChar));
101 …$message = \syntax_plugin_combo_variable::replaceVariablesWithValuesFromContext($message, $context…
130 $message = self::replace($commandArgs, $message);
133 $message = self::head($commandArgs, $message);
[all …]
H A DMessage.php45 $message = new Message(self::TYPE_INFO);
47 $message->addPlainTextContent($plainText);
49 return $message;
54 $message = new Message(self::TYPE_WARNING);
56 $message->addPlainTextContent($plainText);
58 return $message;
63 function addContent($message, $mime): Message argument
68 $this->content[$mime][] = $message;
74 $message = new Message(self::TYPE_ERROR);
76 $message->addPlainTextContent($plainText);
[all …]
H A DQualityTag.php73 …$message = "<p>The page has a " . PluginUtility::getDocumentationHyperLink("quality:score", "quali…
81 …$message .= "<div class='alert alert-warning'>This is a {$lqPageUrl} because it has failed the fol…
82 $message .= "<ul style='margin-bottom: 0'>";
91 …$message .= "<li>" . PluginUtility::getDocumentationHyperLink("quality:rule#list", $mandatoryFaile…
94 $message .= "</ul>";
95 $message .= "</div>";
97 $message .= "<p>You can still win a couple of points.</p>";
98 $message .= "<ul>";
100 $message .= "<li>$qualityInfo</li>";
102 $message .= "</ul>";
[all …]
H A DCacheTag.php31 $message = "No markup executing. Cache expiration date could not be set";
32 LogUtility::error($message, self::MARKUP);
35 PluginUtility::EXIT_MESSAGE => $message
49 … $message = "Internal Error: The cache expiration date could not be stored: {$e->getMessage()}";
50 LogUtility::error($message, self::MARKUP, $e);
52 $returnedArray[PluginUtility::EXIT_MESSAGE] = $message;
68 $message = $data[PluginUtility::EXIT_MESSAGE];
69 LogUtility::error($message, CacheExpirationFrequency::PROPERTY_NAME);
H A DExceptionCompile.php21 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
24 parent::__construct($message, $code, $previous);
35 public static function withMessageAndError(string $message, Throwable $previous) argument
38 return new $calledClass($message, "support", 1, $previous);
H A DExceptionRuntime.php23 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
26 parent::__construct($message, $code, $previous);
36 public static function withMessageAndError(string $message, Throwable $previous) argument
39 return new $calledClass($message, "support", 1, $previous);
H A DExceptionNotEquals.php19 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
21 parent::__construct($message, $canonical, $code, $previous);
24 public static function create(string $message, $left, $right): ExceptionNotEquals argument
26 return (new ExceptionNotEquals($message))
H A DCacheLog.php28 …public static function deleteCacheIfExistsAndLog(IFetcher $fetcher, string $event, string $message) argument
48 $message
58 … public static function renderCacheAndLog(IFetcherSource $fetcher, string $event, string $message) argument
71 $message
82 …tion logCacheEvent(string $event, string $path, string $format, string $operation, string $message) argument
92 self::MESSAGE_ATT => $message
H A DSqliteRequest.php109 $message = $this->getErrorMessage();
110 throw new ExceptionCompile("Error in the $requestType. Message: {$message}");
114 $message = $this->getErrorMessage();
115 …uestType`. res is not a PDOStatement but as the value ($res). Message: {$message}, Query: {$queryE…
139 $message = "";
142 $message = ("No rows were deleted or updated");
145 return "$message. : {$errorInfoAsString}";
/template/strap/ComboStrap/Tag/
H A DFollowTag.php44 …$message = "The brand button does not have any follow url. You need to set at minimum the `$handle…
45 return self::returnErrorString($message, $state);
54 $message = "The brand button creation returns an error ({$e->getMessage()}";
55 return self::returnErrorString($message, $state);
65 …$message = "The style of the share button ($brand) could not be determined. Error: {$e->getMessage…
66 return self::returnErrorString($message, $state);
80 …$message = "The brand button creation returns an error when creating the link ({$e->getMessage()}";
81 return self::returnErrorString($message, $state);
91 … $message = "Getting the icon for the brand ($brand) returns an error ({$e->getMessage()}";
92 return self::returnErrorString($message,$state);
[all …]
/template/strap/vendor/symfony/yaml/Exception/
H A DParseException.php27 * @param string $message The error message
32 …public function __construct(string $message, int $parsedLine = -1, string $snippet = null, string … argument
37 $this->rawMessage = $message;
41 parent::__construct($this->message, 0, $previous);
108 $this->message = $this->rawMessage;
111 if ('.' === substr($this->message, -1)) {
112 $this->message = substr($this->message, 0, -1);
117 …$this->message .= sprintf(' in %s', json_encode($this->parsedFile, \JSON_UNESCAPED_SLASHES | \JSON…
121 $this->message .= sprintf(' at line %d', $this->parsedLine);
125 $this->message .= sprintf(' (near "%s")', $this->snippet);
[all …]
/template/strap/action/
H A Droutermessage.php107 $message = Message::createInfoMessage()
112 $message = Message::createWarningMessage()
116 $message = Message::createWarningMessage()
120 $message = Message::createWarningMessage()
124 $message = Message::createWarningMessage()
129 $message = Message::createWarningMessage()
134 $message = Message::createInfoMessage()
139 $message = Message::createInfoMessage()
146 $message = Message::createInfoMessage()
160 $this->addToMessagePagesWithSameName($message, $pageOrigin);
[all …]
/template/twigstarter/vendor/twig/twig/src/
DDeprecatedCallableInfo.php43 $message = \sprintf('Twig %s "%s" is deprecated', ucfirst($this->type), $this->name);
46 $message .= \sprintf('; use "%s"', $this->altName);
48 $message .= \sprintf(' from the "%s" package', $this->altPackage);
51 $message .= \sprintf(' (available since version %s)', $this->altVersion);
53 $message .= ' instead';
57 $message .= \sprintf(' in %s', $file);
59 $message .= \sprintf(' at line %d', $line);
63 $message .= '.';
65 trigger_deprecation($this->package, $this->version, $message);
/template/strap/resources/snippet/js/
H A Dsubscribe.js26 let message;
29 message = data.message;
36 if (typeof message === 'undefined') {
37 message = "Sorry. The server seems to be down.";
46 message = form.getAttribute("data-success-content");
47 if (message === null) {
48message = "A validation email has been send. <br>Check your mailbox and click on the validation li…
52 .addBody(message)
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteStatus.php15 protected $message; variable in Facebook\\WebDriver\\Remote\\RemoteStatus
21 * @param string $message
23 protected function __construct($isReady, $message, array $meta = []) argument
26 $this->message = (string) $message;
61 return $this->message;
/template/twigstarter/vendor/twig/twig/src/Error/
DError.php49 * @param string $message The error message
53 …public function __construct(string $message, int $lineno = -1, ?Source $source = null, ?\Throwable… argument
61 $this->rawMessage = $message;
120 $this->message = $this->rawMessage;
121 $last = substr($this->message, -1);
123 $this->message = substr($this->message, 0, -1);
126 $this->message .= \sprintf(' in "%s"', $this->source->getName());
129 $this->message .= \sprintf(' at line %d', $this->lineno);
132 $this->message .= $punctuation;
/template/strap/vendor/symfony/deprecation-contracts/
H A Dfunction.php18 * @param string $message The message of the deprecation
23 function trigger_deprecation(string $package, string $version, string $message, ...$args): void argument
25 …version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USE…
/template/twigstarter/vendor/symfony/deprecation-contracts/
Dfunction.php18 * @param string $message The message of the deprecation
23 …function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): v… argument
25 …version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USE…
/template/twigstarter/vendor/twig/twig/src/Test/
DIntegrationTestCase.php125 …public function testIntegration($file, $message, $condition, $templates, $exception, $outputs, $de… argument
127 …$this->doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs, $deprecati…
137 …public function testLegacyIntegration($file, $message, $condition, $templates, $exception, $output… argument
139 …$this->doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs, $deprecati…
171 $message = $match[1];
178 $message = $match[1];
188 …xturesDir.'/', '', $file)] = [str_replace($fixturesDir.'/', '', $file), $message, $condition, $tem…
212 …protected function doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs… argument
289 $message = $e->getMessage();
290 … $this->assertSame(trim($exception), trim(\sprintf('%s: %s', $e::class, $message)));
[all …]
/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DFailedPredicateException.php27 public function __construct(Parser $recognizer, string $predicate, ?string $message = null) argument
33 $this->formatMessage($predicate, $message)
73 public function formatMessage(string $predicate, ?string $message = null) : string argument
75 if ($message !== null) {
76 return $message;
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverWait.php39 * @param string $message
46 public function until($func_or_ec, $message = '') argument
71 throw new TimeoutException($message);
/template/strap/ComboStrap/Api/
H A DQualityMessageHandler.php75 $message = QualityTag::createQualityReport($markupPath);
76 $status = $message->getStatus();
83 ->setBody($message->getContent(), Mime::getHtml())
/template/dokubootstrapsimplified/
Dtpl_functions.php218 function dw($message) { argument
220 if (is_array($message)) {
221 print_r($message);
223 print $message;

1234567