Home
last modified time | relevance | path

Searched +full:- +full:- +full:type (Results 1 – 25 of 597) sorted by relevance

12345678910>>...24

/dokuwiki/lib/plugins/authpdo/_test/pgsql/
H A Ddjango.sql1 --
2 -- PostgreSQL database dump
3 --
5 -- Dumped from database version 9.5.1
6 -- Dumped by pg_dump version 9.5.1
14 --
15 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
16 --
21 --
22 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
[all …]
/dokuwiki/inc/Remote/OpenApiDoc/
H A DDocBlockProperty.php7 /** @var Type */
8 protected $type; variable in dokuwiki\\Remote\\OpenApiDoc\\DocBlockProperty
20 $this->refineVar();
24 * The Type of this property
26 * @return Type
30 return $this->type;
40 $refType = $this->reflector->getType();
41 $this->type = new Type($refType ? $refType->getName() : 'string', $this->getContext());
44 if (!isset($this->tags['var'])) return;
46 [$type, $description] = array_map('trim', sexplode(' ', $this->tags['var'][0], 2, ''));
[all …]
H A DType.php5 class Type class
16 $this->typehint = $typehint;
17 $this->context = $context;
27 return $this->typehint;
31 * Return the base type
33 * This is the type this variable is. Eg. a string[] is an array.
39 $typehint = $this->typehint;
63 if ($this->context && ctype_upper($typehint[0])) {
64 return ClassResolver::getInstance()->resolve($typehint, $this->context);
71 * Return a primitive type understood by the XMLRPC server
[all …]
H A DDocBlockMethod.php20 $this->refineParam();
21 $this->refineReturn();
27 if ($this->reflector instanceof ReflectionFunction) {
40 return $this->getTag('param');
50 return $this->getTag('return');
63 foreach ($this->reflector->getParameters() as $parameter) {
64 $refType = $parameter->getType();
65 $result[$parameter->getName()] = [
66 'type' => new Type($refType ? $refType->getName() : 'string', $this->getContext()),
67 'optional' => $parameter->isOptional(),
[all …]
H A DOpenAPIGenerator.php29 $this->api = new Api();
39 $this->documentation = [];
40 $this->documentation['openapi'] = '3.1.0';
41 $this->documentation['info'] = [
45 'x-locale' => 'en-US',
48 $this->addServers();
49 $this->addSecurity();
50 $this->addMethods();
52 return json_encode($this->documentation, JSON_PRETTY_PRINT);
108 $this->documentation['servers'] = [
[all …]
/dokuwiki/_test/tests/Remote/OpenApiDoc/
H A DDocBlockMethodTest.php6 use dokuwiki\Remote\OpenApiDoc\Type; alias
34 $this->assertEquals('This is a test', $doc->getSummary());
35 $this->assertEquals("With more information\nin several lines", $doc->getDescription());
37 $this->assertEquals(
40 'type' => 'string',
45 'type' => 'int',
50 'type' => 'string[]',
56 $doc->getTag('param')
59 $params = $doc->getParameters();
60 $this->assertInstanceOf(Type::class, $params['foo']['type']);
[all …]
/dokuwiki/inc/Parsing/ParserMode/
H A DFormatting.php11 protected $type; variable in dokuwiki\\Parsing\\ParserMode\\Formatting
53 * @param string $type
55 public function __construct($type) argument
59 if (!array_key_exists($type, $this->formatting)) {
60 trigger_error('Invalid formatting type ' . $type, E_USER_WARNING);
63 $this->type = $type;
67 $key = array_search($type, $modes);
72 $this->allowedModes = array_merge(
84 if ($mode == $this->type) {
88 $this->Lexer->addEntryPattern(
[all …]
/dokuwiki/_test/
H A Dcomposer.lock4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
7 "content-hash": "b46e714c3fffef66635c61805f05bc0f",
10 "name": "scotteh/php-dom-wrapper",
13 "type": "git",
14 "url": "https://github.com/scotteh/php-dom-wrapper.git",
18 "type": "zip",
19 …"url": "https://api.github.com/repos/scotteh/php-dom-wrapper/zipball/351e9c635c9aa65c8cedaeefcac3a…
24 "ext-libxml": "*",
25 "ext-mbstring": "*",
26 "lib-libxml": ">=2.7.7",
[all …]
/dokuwiki/vendor/splitbrain/slika/
H A Dcomposer.lock4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
7 "content-hash": "417266ec475af898d03447406f47a5d9",
9 "packages-dev": [
14 "type": "git",
19 "type": "zip",
27 "require-dev": {
28 "doctrine/coding-standard": "^8.0",
29 "ext-pdo": "*",
30 "ext-phar": "*",
31 "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DRegistry.php6 * A PHP-Based RSS and Atom Feed Framework.
9 * Copyright (c) 2004-2022, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors
37 * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue
42 * @license http://www.opensource.org/licenses/bsd-license.php BSD License
47 use SimplePie\Content\Type\Sniffer;
65 * @var array<class-string, class-string>
101 * @var array<class-string>
109 * @var array<string, class-string>
136 * No-op
145 * @param string $type See {@see $default} for names
[all …]
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A Dcomposer.lock4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
7 "content-hash": "e81751bccd9c8439dcdd3a819dc273fb",
9 "packages-dev": [
14 "type": "git",
19 "type": "zip",
27 "require-dev": {
28 "doctrine/coding-standard": "^9 || ^11",
29 "ext-pdo": "*",
30 "ext-phar": "*",
33 "phpstan/phpstan-phpunit": "^1",
[all …]
/dokuwiki/.github/ISSUE_TEMPLATE/
H A Dbug_report.yml5 - type: markdown
13 ---
24 - type: textarea
27 description: >-
41 - type: markdown
45 - type: input
49 placeholder: 2024-02-14a "Kaos"
52 - type: input
59 - type: input
64 - type: input
[all …]
/dokuwiki/vendor/composer/
H A Dinstalled.php4 'pretty_version' => 'dev-master',
5 'version' => 'dev-master',
7 'type' => 'project',
13 'aziraphale/email-address-validator' => array(
17 'type' => 'library',
18 'install_path' => __DIR__ . '/../aziraphale/email-address-validator',
23 'pretty_version' => 'dev-master',
24 'version' => 'dev-master',
26 'type' => 'project',
32 'pretty_version' => 'dev-master',
[all …]
H A Dinstalled.json4 "name": "aziraphale/email-address-validator",
8 "type": "git", string
9 "url": "https://github.com/aziraphale/email-address-validator.git",
13 "type": "zip", string
14 …"url": "https://api.github.com/repos/aziraphale/email-address-validator/zipball/fa25bc22c1c0b64916…
18 "require-dev": {
21 "time": "2017-05-22T14:05:57+00:00",
22 "type": "library", string
23 "installation-source": "dist",
25 "psr-0": {
[all …]
/dokuwiki/inc/Menu/Item/
H A DEdit.php23 $this->method = 'post';
25 $this->accesskey = 'e';
27 $this->type = 'draft';
28 $this->params['do'] = 'draft';
30 $this->params['rev'] = $REV;
32 $this->type = 'create';
38 $this->type = 'source';
39 $this->accesskey = 'v';
43 $this->params = ['do' => ''];
44 $this->type = 'show';
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/
H A DPrivateKey.php8 * @license http://www.opensource.org/licenses/mit-license.html MIT License
47 $type = self::validatePlugin('Keys', 'PKCS8', 'savePublicKey');
49 if (!isset($this->publicKey)) {
50 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime);
53 $key = $type::savePublicKey($this->prime, $this->base, $this->publicKey);
61 * @param string $type
65 public function toString($type, array $options = []) argument
67 $type = self::validatePlugin('Keys', $type, 'savePrivateKey');
69 if (!isset($this->publicKey)) {
70 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime);
[all …]
/dokuwiki/lib/plugins/extension/
H A DNotice.php38 $this->helper = plugin_load('helper', 'extension');
39 $this->extension = $extension;
41 $this->checkSecurity();
42 $this->checkURLChange();
43 $this->checkFolder();
44 $this->checkPHPVersion();
45 $this->checkDependencies();
46 $this->checkConflicts();
47 $this->checkUpdateMessage();
48 $this->checkPermissions();
[all …]
/dokuwiki/inc/Extension/
H A DPluginController.php29 $this->loadConfig();
30 $this->populateMasterList();
31 $this->initAutoloaders();
35 * Returns a list of available plugins of given type
37 * @param $type string, plugin_type name;
38 * the type of plugin to return,
45 * - plugin names when $type = ''
46 * - or plugin component names when a $type is given
50 public function getList($type = '', $all = false) argument
54 if (!$type) {
[all …]
/dokuwiki/
H A Dcomposer.lock4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
7 "content-hash": "e7609782a9549baad779c2ff22217757",
10 "name": "aziraphale/email-address-validator",
13 "type": "git",
14 "url": "https://github.com/aziraphale/email-address-validator.git",
18 "type": "zip",
19 …"url": "https://api.github.com/repos/aziraphale/email-address-validator/zipball/fa25bc22c1c0b64916…
23 "require-dev": {
26 "type": "library",
28 "psr-0": {
[all …]
/dokuwiki/vendor/splitbrain/lesserphp/src/Functions/
H A DType.php10 * Implements the type functions for LESS
12 * @link https://lesscss.org/functions/#type-functions
14 class Type extends AbstractFunctionCollection class
39 * @link https://lesscss.org/functions/#type-functions-isnumber
49 * @link https://lesscss.org/functions/#type-functions-isstring
59 * @link https://lesscss.org/functions/#type-functions-iscolor
69 * @link https://lesscss.org/functions/#type-functions-iskeyword
79 * @link https://lesscss.org/functions/#type-functions-isurl
89 * @link https://lesscss.org/functions/#type-functions-ispixel
99 * @link https://lesscss.org/functions/#type-functions-isem
[all …]
/dokuwiki/inc/Remote/Response/
H A DPageChange.php20 /** @var string The type of this change */
21 public $type; variable in dokuwiki\\Remote\\Response\\PageChange
33 * @param string $type
36 public function __construct($id, $revision, $author, $ip, $summary, $type, $sizechange) argument
38 $this->id = $id;
39 $this->revision = $revision;
40 $this->author = $author;
41 $this->ip = $ip;
42 $this->summary = $summary;
43 $this->type = $type;
[all …]
H A DMediaChange.php20 /** @var string The type of this change */
21 public $type; variable in dokuwiki\\Remote\\Response\\MediaChange
33 * @param string $type
36 public function __construct($id, $revision, $author, $ip, $summary, $type, $sizechange) argument
38 $this->id = $id;
39 $this->revision = $revision;
40 $this->author = $author;
41 $this->ip = $ip;
42 $this->summary = $summary;
43 $this->type = $type;
[all …]
H A DLink.php7 /** @var string The type of this link: `internal`, `external` or `interwiki` */
8 public $type; variable in dokuwiki\\Remote\\Response\\Link
15 * @param string $type One of `internal`, `external` or `interwiki`
19 public function __construct($type, $page, $href) argument
21 $this->type = $type;
22 $this->page = $page;
23 $this->href = $href;
29 return $this->href;
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dbasic.less12 overflow-x: auto;
13 overflow-y: scroll;
18 background: @ini_background_site url(images/page-gradient.png) top left repeat-x;
23 font: normal 87.5%/1.4 Arial, sans-serif;
25 -webkit-text-size-adjust: 100%;
37 line-height: 1.2;
45 font-weight: bold;
47 line-height: 1.2;
60 font-size: 2em;
64 font-size: 1.5em;
[all …]
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/
H A DValue.php8 private $type; variable in IXR\\DataType\\Value
10 public function __construct($data, $type = null) argument
12 $this->data = $data;
13 if (!$type) {
14 $type = $this->calculateType();
16 $this->type = $type;
17 if ($type === 'struct') {
19 foreach ($this->data as $key => $value) {
20 $this->data[$key] = new Value($value);
23 if ($type === 'array') {
[all …]

12345678910>>...24