Home
last modified time | relevance | path

Searched refs:type (Results 26 – 50 of 101) sorted by last modified time

12345

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php37 * @param int $type Type of compression to use ignored for ZIP
40 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO) argument
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md138 The resulting object then can be passed as the logger instance. The difference between the two is in adjusted method signatures (with appropriate type hinting) only. Be sure you have the suggested `psr/log` composer package installed when using these classes.
140 Note: if your backend code calls for a PSR-3 logger but does not actually type check for the interface (AKA being LoggerAware only) you can also just pass an instance of `splitbrain\phpcli\CLI`.
/dokuwiki/inc/
H A Dcommon.php149 $ret = '<div class="no"><input type="hidden" name="sectok" value="' . getSecurityToken() . '" /></div>' . "\n";
291 // Use $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT in place of $info['minor'].
1777 * @param string $type - type of image 'badge' or 'button'
1780 function license_img($type)
1787 $try[] = 'lib/images/license/' . $type . '/' . $conf['license'] . '.png';
1788 $try[] = 'lib/images/license/' . $type . '/' . $conf['license'] . '.gif';
1790 $try[] = 'lib/images/license/' . $type . '/cc.png';
2031 $content = preg_replace('/<!DOCTYPE .*?>/i', '', $content); // doc type
1753 license_img($type) global() argument
H A Dpluginutils.php27 * @param string $type type of plugins; empty string for all
31 function plugin_list($type = '', $all = false)
35 $plugins = $plugin_controller->getList($type, $all);
45 * @param $type string type of plugin to load
51 function plugin_load($type, $name, $new = false, $disabled = false)
55 return $plugin_controller->load($type, $name, $new, $disabled);
30 plugin_list($type = '', $all = false) global() argument
50 plugin_load($type, $name, $new = false, $disabled = false) global() argument
H A Dinfoutils.php76 * Return DokuWiki's version (split up in date and type)
87 $version['type'] = 'Release';
89 $version['type'] = 'Git';
141 $version['type'] = 'snapshot?';
149 * This returns the version in the form "Type Date (SHA)". Where type is either
164 return $version['type'] . ' ' . $version['date'] . $sha;
540 $function = $call['class'] . $call['type'] . $call['function'];
/dokuwiki/lib/plugins/extension/
H A Dscript.js135 var $input = jQuery( '<input />', { type: 'checkbox', name: chkName })
/dokuwiki/lib/plugins/info/
H A Dsyntax.php125 * @param string $type
128 protected function renderPlugins($type, Doku_Renderer $renderer)
131 $plugins = plugin_list($type);
136 $po = plugin_load($type, $p);
198 foreach ($method['params'] as $desc => $type) {
199 $params[] = hsc($desc) . '</td><td>' . hsc($type);
335 'type' => 'ul',
126 renderPlugins($type, Doku_Renderer $renderer) global() argument
/dokuwiki/inc/lang/fr/
H A Dstopwords.txt3 # Les fins de ligne de ce fichier doivent être de type UNIX
/dokuwiki/inc/lang/no/
H A Duploadmail.txt10 MIME-type : @MIME@
/dokuwiki/vendor/composer/
H A DInstalledVersions.php31 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
42 * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
67 * Returns a list of all package names with a specific type e.g. 'library'
69 * @param string $type
73 public static function getInstalledPackagesByType($type) argument
79 if (isset($package['type']) && $package['type'] === $type) {
[all...]
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php563 * Get the extension type(s)
565 * @return array The type(s) as array of strings
611 * The type of extension installation
799 foreach (PluginController::PLUGIN_TYPES as $type) {
800 if (file_exists($path . $type . '.php')) {
801 $plugin = plugin_load($type, $this->base);
805 if ($dh = @opendir($path . $type . '/')) {
809 $plugin = plugin_load($type, $this->base . '_' . substr($cp, 0, -4));
1043 if ($item['type'] == 'template') {
1075 if ($item['type']
[all...]
/dokuwiki/inc/Menu/Item/
H A DRevisions.php18 $this->type = 'revs';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php642 * Contains the type of the last sent message
1767 list($type, $primeBytes, $gBytes) = Strings::unpackSSH2('Css', $response);
1768 if ($type != NET_SSH2_MSG_KEXDH_GEX_GROUP) {
1813 $type,
1819 if ($type != constant($serverKexReplyMessage)) {
1897 list($type) = Strings::unpackSSH2('C', $response);
1898 if ($type != NET_SSH2_MSG_NEWKEYS) {
2363 list($type) = Strings::unpackSSH2('C', $response);
2365 if ($type == NET_SSH2_MSG_EXT_INFO) {
2375 list($type)
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php144 * @param string $type optional
147 public function getPublicKey($type = 'PKCS8')
284 list($type, $signature_blob) = Strings::unpackSSH2('Cs', $packet);
285 if ($type != Agent::SSH_AGENT_SIGN_RESPONSE) {
293 list($type, $signature_blob) = Strings::unpackSSH2('ss', $signature_blob);
301 * @param string $type
305 public function toString($type, array $options = [])
/dokuwiki/inc/Parsing/Handler/
H A DLists.php55 // array(list type, current depth, index of current listitem_open)
100 // Switched list type...
147 // Switching list type...
175 protected function interpretSyntax($match, &$type) argument
178 $type = 'u';
180 $type = 'o';
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DFile.php91 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
93 public function __construct($location, $name, $type) argument
97 $this->extension = $type;
/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)
59 if (!array_key_exists($type, $this->formatting)) {
60 trigger_error('Invalid formatting type ' . $type, E_USER_WARNING); argument
63 $this->type = $type;
67 $key = array_search($type, $modes);
84 if ($mode == $this->type) {
[all...]
/dokuwiki/
H A DCOPYING316 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318 under certain conditions; type `show c' for details.
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DIntrospectionServer.php32 'Returns an array describing the return type and required parameters of a method'
87 $type = array_shift($signature);
88 switch ($type) {
135 foreach ($types as $type) {
136 switch ($type) {
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php148 '%s(): Argument #3 ($cache_name_function) must be of type %s',
343 public function sanitize($data, $type, $base = '') argument
346 if ($data !== '' || $type & \SimplePie\SimplePie::CONSTRUCT_IRI) {
347 if ($type & \SimplePie\SimplePie::CONSTRUCT_MAYBE_HTML) {
349 $type |= \SimplePie\SimplePie::CONSTRUCT_HTML;
351 $type |= \SimplePie\SimplePie::CONSTRUCT_TEXT;
355 if ($type & \SimplePie\SimplePie::CONSTRUCT_BASE64) {
359 if ($type & (\SimplePie\SimplePie::CONSTRUCT_HTML | \SimplePie\SimplePie::CONSTRUCT_XHTML)) {
366 $data = $this->preprocess($data, $type);
388 $this->strip_tag($tag, $document, $xpath, $type);
476 preprocess($html, $type) global() argument
536 strip_tag($tag, $document, $xpath, $type) global() argument
[all...]
H A DSimplePie.php129 * No known feed type
569 * (false, or anything type-cast to false, disables this feature)
756 * This tells SimplePie to ignore the content-type provided by the server.
1259 * Set which class SimplePie uses for content-type sniffing
1621 if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset)) {
1627 if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset)) {
1632 // Text MIME-type default
1710 * @return array|true Returns true if the data was loaded from the cache, or an array of HTTP headers and sniffed type
2304 sanitize($data, $type, $base = '') global() argument
[all...]
H A DSource.php94 public function sanitize($data, $type, $base = '') argument
96 return $this->item->sanitize($data, $type, $base);
/dokuwiki/inc/Remote/
H A DApi.php22 * 'type eg. string|int|...|date|file',
25 * 'return' => 'type',
118 * @return mixed result of method call, must be a primitive type.
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php

12345