Home
last modified time | relevance | path

Searched +full:- +full:- +full:name +full:- +full:only (Results 1 – 25 of 182) sorted by relevance

12345678

/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/
H A Dpluginutils.php16 // note that only [a-z0-9]+ is officially supported,
17 // this is only to support plugins that don't follow these conventions, too
18 if (!defined('DOKU_PLUGIN_NAME_REGEX')) define('DOKU_PLUGIN_NAME_REGEX', '[a-zA-Z0-9\x7f-\xff]+');
28 * @param bool $all; true to retrieve all, false to retrieve only enabled plugins
35 $plugins = $plugin_controller->getList($type, $all);
42 * Returns only new instances of a plugin when $new is true or if plugin is not Singleton,
46 * @param $name string name of the plugin to load
51 function plugin_load($type, $name, $new = false, $disabled = false) argument
55 return $plugin_controller->load($type, $name, $new, $disabled);
61 * @param string $plugin name of plugin
[all …]
/dokuwiki/vendor/php81_bc/strftime/src/
H A DDateLocaleFormatter.php8 * This formatter uses simple, non-locale aware formatting of dates
10 …* It should only be used when the intl extension is not available and thus the IntlLocaleFormatter…
18 '%b' => 'M', // Abbreviated month name, Jan through Dec
19 '%B' => 'F', // Full month name, January through December
20 '%h' => 'M', // Abbreviated month name, (an alias of %b) Jan through Dec
23 '%X' => 'g:i:s A', // Time only
29 if (!isset($this->formats[$format])) {
33 trigger_error('Formatting without \\IntlDateFormatter only return english formats');
35 return $timestamp->format($this->formats[$format]);
/dokuwiki/lib/plugins/usermanager/
H A Dremote.php11 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
21 * value rather than relying on the error code only.
25 * @param string $user The user's login name
26 * @param string $name The user's full name
36 public function createUser($user, $name, $mail, $groups, $password = '', $notify = false) argument
39 throw new AccessDeniedException('Only admins are allowed to create users', 114);
45 if (!$auth->canDo('addUser')) {
47 sprintf('Authentication backend %s can\'t do addUser', $auth->getPluginName()),
52 $user = trim($auth->cleanUser($user));
53 $name = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $name));
[all …]
/dokuwiki/inc/Extension/
H A DPluginInterface.php21 * base - the plugin's base name (eg. the directory it needs to be installed in)
22 * author - Author of the plugin
23 * email - Email address to contact the author
24 * date - Last modified date of the plugin in YYYY-MM-DD format
25 * name - Name of the plugin
26 * desc - Short description of the plugin (Text only)
27 * url - Website with more information on the plugin (eg. syntax description)
32 * The type of the plugin inferred from the class name
39 * The name of the plugin inferred from the class name
41 * @return string plugin name
[all …]
H A DAuthPlugin.php12 * @author Jan Schumann <js@jschumann-it.com>
42 * able to operate. Set capabilities in $this->cando
48 * Set $this->success to false if checks fail
68 return array_keys($this->cando);
74 * Checks the capabilities set in the $this->cando array and
90 return ($this->cando['modPass'] ||
91 $this->cando['modName'] ||
92 $this->cando['modMail']);
95 return ($this->cando['modPass'] ||
96 $this->cando['modName'] ||
[all …]
H A DPluginController.php29 $this->loadConfig();
30 $this->populateMasterList();
31 $this->initAutoloaders();
37 * @param $type string, plugin_type name;
41 * false to only return enabled plugins,
45 * - plugin names when $type = ''
46 * - or plugin component names when a $type is given
55 … return $all ? array_keys($this->masterList) : array_keys(array_filter($this->masterList));
58 if (!isset($this->listByType[$type]['enabled'])) {
59 $this->listByType[$type]['enabled'] = $this->getListByType($type, true);
[all …]
H A DRemotePlugin.php24 $this->api = new Api();
41 foreach ($reflection->getMethods(ReflectionMethod::IS_PUBLIC) as $method) {
42 // skip parent methods, only methods further down are exported
43 $declaredin = $method->getDeclaringClass()->name;
47 $method_name = $method->name;
63 * @deprecated 2023-11-30
77 return $this->api;
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DNameFilter.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
18 * The returning name MUST follow the rules for keys in PSR-16.
20 * @link https://www.php-fig.org/psr/psr-16/
22 * The returning name MUST be a string of at least one character
23 * that uniquely identifies a cached item, MUST only contain the
24 * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
32 * @param string $name The name for the cache will be most likely an url with query string
34 * @return string the new cache name
36 public function filter(string $name): string; argument
H A DCallableNameFilter.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
25 $this->callable = $callable;
31 * The returning name MUST follow the rules for keys in PSR-16.
33 * @link https://www.php-fig.org/psr/psr-16/
35 * The returning name MUST be a string of at least one character
36 * that uniquely identifies a cached item, MUST only contain the
37 * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
45 * @param string $name The name for the cache will be most likely an url with query string
47 * @return string the new cache name
[all …]
H A DFile.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
44 protected $name; variable in SimplePie\\Cache\\File
50 * @param string $name Unique ID for the cache
53 public function __construct(string $location, string $name, $type) argument
55 $this->location = $location;
56 $this->filename = $name;
57 $this->extension = $type;
58 $this->name = "$this->location/$this->filename.$this->extension";
64 …SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data pro…
[all …]
H A DMemcache.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
41 * Cache name
45 protected $name; variable in SimplePie\\Cache\\Memcache
51 * @param string $name Unique ID for the cache
54 public function __construct(string $location, string $name, $type) argument
56 $this->options = [
64 … $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location));
66 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
68 $this->cache = new NativeMemcache();
[all …]
H A DMemcached.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-FileCopyrightText: 2015 Paul L. McNeely
5 // SPDX-License-Identifier: BSD-3-Clause
40 * Cache name
43 protected $name; variable in SimplePie\\Cache\\Memcached
48 * @param string $name Unique ID for the cache
51 public function __construct(string $location, string $name, $type) argument
53 $this->options = [
61 … $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location));
63 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
[all …]
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DJSONCreator.php17 $data['title'] = (string)$this->title;
18 $data['home_page_url'] = (string)$this->link;
19 $data['feed_url'] = (string)$this->syndicationURL;
20 $data['description'] = (string)$this->description;
22 if ($this->image != null) {
23 $data['icon'] = $this->image->url;
25 if ($this->language != '') {
26 $data['language'] = $this->language;
30 foreach ($this->items as $item) {
32 $entry['id'] = $item->guid ? (string)$item->guid : (string)$item->link;
[all …]
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php15 * and make the properties non-public. The trait will preserve public access
23 * $this->deprecatePublicProperty( 'bar', '1.21', __CLASS__ );
28 * $foo->bar; // works but logs a warning
36 * List of deprecated properties, in <property name> => <class> format
37 * where <class> is the the name of the class defining the property
45 * Mark a property as deprecated. Only use this for properties that used to be public and only
48 * @param string $property The name of the property.
49 * @param null $class name of the class defining the property
56 $this->deprecatedPublicProperties[$property] = $class ?: $this::class;
59 public function __get($name) argument
[all …]
/dokuwiki/lib/plugins/styling/
H A Dadmin.php9 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
25 * @return bool true if only access for superuser, false is for superusers and moderators
38 $run = $INPUT->extract('run')->str('run');
42 $this->$run();
51 if ($this->ispopup) $class = 'ispopup page';
54 echo '<h1>' . $this->getLang('menu') . '</h1>';
55 $this->form();
68 $styleini = $styleUtil->cssStyleini();
71 if ($this->ispopup) {
78 echo '<p class="error">' . $this->getLang('error') . '</p>';
[all …]
/dokuwiki/lib/scripts/
H A Dcookie.js4 * Only a single cookie is written and read. You may only save
5 * simple name-value pairs - no complex types!
7 * You should only use the getValue and setValue methods
14 name: 'DOKU_PREFS', property
39 …jQuery.cookie(this.name, text.join('#'), {expires: 365, path: DOKU_COOKIE_PARAM.path, secure: DOKU…
63 text = jQuery.cookie(this.name);
/dokuwiki/lib/plugins/authpdo/_test/mysql/
H A Dfluxbb.php3 …* Confiuration for fluxbb. They have a very simplistic model. There is no separate display name an…
4 * only be in a single group.
10 'select-user' => '
13 username AS name,
19 'select-user-groups' => '
25 'select-groups' => '
29 'insert-user' => '
34 'delete-user' => '
38 'list-users' => '
44 AND U.username LIKE :name
[all …]
/dokuwiki/.github/workflows/
H A Drelease-preparation.yml4 # When the pull request is merged, the release-build workflow will be triggered automatically
6 name: "Release: Preparation ��"
16 - stable
17 - hotfix
18 - rc
23 description: 'The version date YYYY-MM-DD, empty for today'
28 name: Prepare Pull Request
29 runs-on: ubuntu-latest
31 - name: Fail if branch is not master
34 echo "::error::This workflow should only be triggered on master"
[all …]
H A DdeletedFiles.yml2 # It compares the current master with the data/deleted.files file and cleans the file from any re-i…
4 # unless they are already listed there or are excluded from the release archives (export-ignore in …
6 # Finally, the list of newly removed entries receives a header "# removed on $(date -I)" with the c…
8 name: "Update deleted files"
12 - master
15 group: ${{ github.workflow }}-${{ github.ref }}
16 cancel-in-progress: true
20 name: Update deleted files
21 runs-on: ubuntu-latest
23 - name: Checkout
[all …]
/dokuwiki/vendor/simplepie/simplepie/
H A Dautoloader.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
7 * PSR-4 implementation for SimplePie.
15 * @param string $class The fully-qualified class name.
20 // project-specific namespace prefix
33 // get the relative class name
37 // separators with directory separators in the relative class name, append
67 $this->path = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'library';
73 * @param string $class The name of the class to attempt to load.
77 // Only load the class if it starts with "SimplePie"
[all …]
/dokuwiki/lib/plugins/authplain/_test/
H A Descaping.test.php24 $this->auth = new auth_plugin_authplain();
30 $name = $config_cascade['plainauth.users']['default'];
31 copy($name, $name.".orig");
32 $this->reloadUsers();
38 $name = $config_cascade['plainauth.users']['default'];
39 copy($name.".orig", $name);
45 $this->auth->createUser("mwuser", "12345", "Mediawiki User", "me@example.com");
46 $this->reloadUsers();
47 $this->assertTrue($this->auth->checkPass("mwuser", "12345"));
48 $mwuser = $this->auth->getUserData("mwuser");
[all …]
/dokuwiki/inc/Form/
H A DInputElement.php28 * @param string $name The name of this form element
31 public function __construct($type, $name, $label = '') argument
33 parent::__construct($type, ['name' => $name]);
34 $this->attr('name', $name);
35 $this->attr('type', $type);
36 if ($label) $this->label = new LabelElement($label);
46 return $this->label;
60 $this->useInput = (bool) $useinput;
72 if ($this->label) $this->label->attr('for', $id);
86 if ($this->label) $this->label->addClass($class);
[all …]
/dokuwiki/conf/
H A Dinterwiki.conf4 # {NAME} this is replaced by the wikiname as given in the document
5 # only mandatory encoded is done, urlencoding if the link
14 # If no placeholder is defined the urlencoded name is appended to the URL
19 wp https://en.wikipedia.org/wiki/{NAME}
20 wpfr https://fr.wikipedia.org/wiki/{NAME}
21 wpde https://de.wikipedia.org/wiki/{NAME}
22 wpes https://es.wikipedia.org/wiki/{NAME}
23 wppl https://pl.wikipedia.org/wiki/{NAME}
24 wpjp https://ja.wikipedia.org/wiki/{NAME}
25 wpru https://ru.wikipedia.org/wiki/{NAME}
[all …]
/dokuwiki/lib/plugins/config/lang/en/
H A Dlang.php20 ensure the local settings file name and permissions are correct.';
26 /* --- Config Setting Headers --- */
33 /* --- Config Setting Groups --- */
37 $lang['_anti_spam'] = 'Anti-Spam';
46 /* --- Undefined Setting Messages --- */
52 /* -------------------- Config Options --------------------------- */
55 $lang['title'] = 'Wiki title aka. your wiki\'s name';
56 $lang['start'] = 'Page name to use as the starting point for each namespace';
60 $lang['sidebar'] = 'Sidebar page name (if template supports it), empty field disables the sideb…
96 $lang['superuser'] = 'Superuser - group, user or comma separated list user1,@group1,user2 with fu…
[all …]

12345678