Home
last modified time | relevance | path

Searched refs:context (Results 1 – 25 of 28) sorted by relevance

12

/dokuwiki/vendor/splitbrain/php-cli/src/
H A DCLI.php19 * @param array $context
23 public function emergency($message, array $context = array()) argument
25 $this->log('emergency', $message, $context);
35 * @param array $context
37 public function alert($message, array $context = array()) argument
39 $this->log('alert', $message, $context);
48 * @param array $context
50 public function critical($message, array $context = array()) argument
52 $this->log('critical', $message, $context);
60 * @param array $context
[all …]
H A DBase.php255 * @param array $context
257 public function fatal($error, array $context = array()) argument
272 $this->logMessage('critical', $error, $context);
280 * @param array $context
282 public function success($string, array $context = array()) argument
284 $this->logMessage('success', $string, $context);
290 * @param array $context
292 protected function logMessage($level, $message, array $context = array()) argument
300 $message = $this->interpolate($message, $context);
314 * @param array $context
[all …]
H A DPSR3CLIv3.php20 public function log($level, string|\Stringable $message, array $context = []): void argument
22 $this->logMessage($level, $message, $context);
/dokuwiki/_test/tests/File/
H A DPageResolverTest.php93 * @param string $context
97 public function testResolveID($context, $id, $expected) argument
99 $resolver = new PageResolver($context);
110 $context = 'foo:context';
111 $resolver = new PageResolver($context);
116 $this->assertEquals("$context:start", $resolver->resolveId('~:'));
117 $this->assertEquals("$context:start", $resolver->resolveId('~'));
120 saveWikiText($context, 'test', 'test');
121 $this->assertEquals($context, $resolver->resolveId('~:'));
124 saveWikiText("$context:context", 'test', 'test');
[all …]
/dokuwiki/inc/Remote/OpenApiDoc/
H A DType.php8 protected $context; variable in dokuwiki\\Remote\\OpenApiDoc\\Type
12 * @param string $context A fully qualified class name in which context the typehint is used
14 public function __construct($typehint, $context = '') argument
17 $this->context = $context;
63 if ($this->context && ctype_upper($typehint[0])) {
64 return ClassResolver::getInstance()->resolve($typehint, $this->context);
114 return new Type($type, $this->context);
H A DClassResolver.php33 * @param string $context The classname in which context in which the class is used
36 public function resolve($classalias, $context) argument
42 $classinfo = $this->getClassUses($context);
53 * @param string $context The classname in which context in which the class is used
56 public function document($classalias, $context) argument
58 $class = $this->resolve($classalias, $context);
/dokuwiki/lib/plugins/extension/
H A DException.php14 * @param array $context array of sprintf variables to be replaced in the message
17 public function __construct($message = "", $context = [], Throwable $previous = null) argument
26 if ($context) {
27 $newmessage = vsprintf($newmessage, $context);
/dokuwiki/_test/tests/Remote/OpenApiDoc/
H A DTypeTest.php53 …lic function testJSONBaseTypes($typehint, $expectedJSONRPCType, $expectedXMLRPCType, $context = '') argument
55 $type = new Type($typehint, $context);
67 …public function testXMLBaseTypes($typehint, $expectedJSONRPCType, $expectedXMLRPCType, $context = … argument
69 $type = new Type($typehint, $context);
92 public function testSubType($typehint, $expected, $context = '') argument
94 $type = new Type($typehint, $context);
/dokuwiki/inc/Menu/
H A DAbstractMenu.php21 protected $context = AbstractItem::CTX_DESKTOP; variable in dokuwiki\\Menu\\AbstractMenu
29 * @param int $context the context this menu is used in
31 public function __construct($context = AbstractItem::CTX_DESKTOP) argument
33 $this->context = $context;
49 fn($item) => $item instanceof AbstractItem && $item->visibleInContext($this->context)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php94 public $context; variable in phpseclib3\\Net\\SFTP\\Stream
166 if (isset($this->context)) {
167 $context = stream_context_get_params($this->context);
168 if (isset($context['notification'])) {
169 $this->notification = $context['notification'];
180 if (isset($this->context)) {
181 $context = stream_context_get_options($this->context);
183 if (isset($context[$scheme]['session'])) {
184 $sftp = $context[$scheme]['session'];
186 if (isset($context[$scheme]['sftp'])) {
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPublicKey.php67 if (isset($this->context)) {
71 if (function_exists('sodium_crypto_sign_verify_detached') && !isset($this->context)) {
94 if (isset($this->context)) {
98 if (defined($keyTypeConstant) && !isset($this->context)) {
137 $dom2 = !isset($this->context) ? '' :
138 … 'SigEd25519 no Ed25519 collisions' . "\0" . chr(strlen($this->context)) . $this->context;
140 $context = isset($this->context) ? $this->context : '';
141 $dom2 = 'SigEd448' . "\0" . chr(strlen($context)) . $context;
H A DPrivateKey.php135 if (isset($this->context)) {
139 if (function_exists('sodium_crypto_sign_detached') && !isset($this->context)) {
155 if (isset($this->context)) {
159 if (defined($keyTypeConstant) && !isset($this->context)) {
185 $dom = !isset($this->context) ? '' :
186 … 'SigEd25519 no Ed25519 collisions' . "\0" . chr(strlen($this->context)) . $this->context;
188 $context = isset($this->context) ? $this->context : '';
189 $dom = 'SigEd448' . "\0" . chr(strlen($context)) . $context;
328 $key = $key->withContext($this->context);
/dokuwiki/lib/scripts/
H A Dcompatibility.js37 function DEPRECATED_WRAP(func, context) { argument
40 return func.apply(context || this, arguments);
/dokuwiki/inc/Subscriptions/
H A DSubscriptionSender.php50 * @param string $context The context of this mail, eg. page or namespace id
62 …protected function send($subscriber_mail, $subject, $context, $template, $trep, $hrep = null, $hea… argument
68 $subject = $lang['mail_' . $subject] . ' ' . $context;
/dokuwiki/inc/Menu/Item/
H A DTop.php22 $this->context = self::CTX_DESKTOP;
H A DAbstractItem.php50 protected $context = self::CTX_ALL; variable in dokuwiki\\Menu\\Item\\AbstractItem
201 return (bool)($ctx & $this->context);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php120 protected $context; variable in phpseclib3\\Crypt\\EC
576 * @param string $context optional
578 public function withContext($context = null) argument
585 if (!isset($context)) {
586 $new->context = null;
589 if (!is_string($context)) {
592 if (strlen($context) > 255) {
595 $new->context = $context;
605 return $this->context;
/dokuwiki/inc/
H A DDifferenceEngine.php741 $context = array();
756 $context = array_slice($edit->orig, 0, $ntrail);
757 $block[] = new _DiffOp_Copy($context);
763 $context = $edit->orig;
767 $context = array_slice($context, count($context) - $nlead);
768 $x0 = $xi - count($context);
769 $y0 = $yi - count($context);
771 if ($context)
772 $block[] = new _DiffOp_Copy($context);
H A Dpageutils.php587 $context = $ID; // this is usually the case
589 $context = "$ns:deprecated"; // only used when a different context namespace was given
592 $resolver = new PageResolver($context);
/dokuwiki/_test/core/
H A DphpQuery-onefile.php1793 public function find($selectors, $context = null, $noHistory = false) { argument
1800 if ($context) {
1801 if (! is_array($context) && $context instanceof DOMELEMENT)
1802 $this->elements = array($context);
1803 else if (is_array($context)) {
1805 foreach ($context as $c)
1808 } else if ( $context instanceof self )
1809 $this->elements = $context->elements;
4498 …* @param string|phpQueryObject|DOMNode $context DOM ID from $pq->getDocumentID(), phpQuery obje…
4503 public static function pq($arg1, $context = null) { argument
[all …]
/dokuwiki/vendor/splitbrain/slika/
H A Dcomposer.lock947 "sebastian/recursion-context": "^3.0"
1037 "sebastian/recursion-context": "^3.0"
1113 "sebastian/recursion-context": "^3.0"
1209 "name": "sebastian/recursion-context",
1213 "url": "https://github.com/sebastianbergmann/recursion-context.git",
1218 …"url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/8fe7e75986a9d24b4…
1258 "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
1260 "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
1261 "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.3"
1277 … "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
/dokuwiki/vendor/geshi/geshi/
H A DBUGS10 context sensitiveness is quite poor...
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A Dcomposer.lock918 "sebastian/recursion-context": "^3.0"
996 "sebastian/recursion-context": "^3.0"
1060 "sebastian/recursion-context": "^3.0"
1156 "name": "sebastian/recursion-context",
1160 "url": "https://github.com/sebastianbergmann/recursion-context.git",
1165 …"url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977b…
1205 "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
1207 "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
1208 "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt3 …ntication connectors]] make DokuWiki especially useful in the enterprise context and the large num…
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_diff.css68 .dokuwiki table.diff td.diff-context {

12