Home
last modified time | relevance | path

Searched refs:namespace (Results 26 – 50 of 684) sorted by relevance

12345678910>>...28

/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/src/Types/
H A DContextFactory.php48 $namespace = $reflector->getNamespaceName();
51 return $this->createForNamespace($namespace, file_get_contents($fileName));
54 return new Context($namespace, []);
60 …* @param string $namespace It does not matter if a `\` precedes the namespace name, this method fi…
67 public function createForNamespace($namespace, $fileContents) argument
69 $namespace = trim($namespace, '\\');
102 if ($currentNamespace === $namespace) {
110 return new Context($namespace, $useStatements);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/
H A DObjectWithXmlNamespaces.yml4 xml_root_namespace: http://example.com/namespace
6 "": http://example.com/namespace
13 namespace: http://purl.org/dc/elements/1.1/
21 namespace: http://schemas.google.com/g/2005
25 namespace: http://www.w3.org/2005/Atom
30 namespace: http://purl.org/dc/elements/1.1/
/plugin/combo/resources/snippet/js/
H A Dtooltip.js2 let namespace = "-bs"
7 namespace = "";
9 jQuery(`[data${namespace}-toggle="tooltip"]`).tooltip();
13 namespace = "";
15 document.querySelectorAll(`[data${namespace}-toggle="tooltip"]`).forEach(el => new bootstrap.Tooltip(el));
/plugin/advanced/admin/
H A Dexport.php118 foreach ($namespaces as $namespace) {
119 echo sprintf('<option value="%s">%s</option>', $namespace['id'], $namespace['id']);
148 $namespace = str_replace(':', '/', $ns);
151 search($pages, $conf['datadir'], 'search_allpages', $options, $namespace);
165 $namespace = str_replace(':', '/', $INPUT->str('ns'));
167 if (!$namespace) {
258 $namespace = str_replace(':', '-', str_replace('(root)', 'ROOT', $INPUT->str('ns')));
276 … header("Content-Disposition: attachment; filename=DokuWiki-export-$namespace-$timestamp.zip");
/plugin/refnotes/
H A Dcore.php15 require_once(DOKU_PLUGIN . 'refnotes/namespace.php');
181 protected $namespace; variable in refnotes_core
189 $this->namespace = array();
197 return count($this->namespace);
201 * Returns a namespace given it's name. The namespace is created if it doesn't exist yet.
214 * Finds a namespace given it's name
219 if (array_key_exists($name, $this->namespace)) {
220 $result = $this->namespace[$name];
227 * Finds a namespace o
[all...]
H A Ddatabase.php18 private $namespace; variable in refnotes_reference_database
40 $this->namespace = array();
112 $namespace = refnotes_configuration::getSetting('reference-db-namespace');
113 $namespacePattern = '/^' . trim($namespace, ':') . ':/';
136 $this->namespace[$ns][] = $pageId;
152 list($namespace, $temp) = refnotes_namespace::parseName($name);
154 if (array_key_exists($namespace, $this->namespace)) {
155 $this->loadNamespaceNotes($namespace);
167 loadNamespaceNotes($namespace) global() argument
188 private $namespace; global() variable in refnotes_reference_database_page
535 update($fileName, $namespace) global() argument
[all...]
/plugin/htmlokay/
H A Dhelper.php20 var $namespace; variable in helper_plugin_htmlOKay
86 $namespace = $INFO['namespace'];
91 $namespace = '_ROOT_';
94 $this->namespace = $namespace;
95 $namespace = str_replace(':', '#', $namespace);
97 $access_file = $this->get_access_file(HTMLOK_ACCESS_DIR, $namespace);
270 function get_access_file($access_dir, $namespace) argument
272 $file = $access_dir . '/' . $namespace;
280 $dirs = explode('#', $namespace);
294 return $access_dir . '/' . $namespace;
/plugin/linksenhanced/syntax/
H A Dtable.php73 function getPagesAndLinks($namespace) argument
84 if($namespace !== false)
85 $namespace = explode(';', $namespace);
96 if($namespace !== false && !in_array($ns, $namespace))
/plugin/tcycle/
H A Dsyntax.php43 … $namespace = $this->_getAttribute($attributes, "namespace", $this->getConf('namespace'));
44 if ($namespace === 1) {
45 $namespace = str_replace(':', '/', getNS(cleanID(getID())));
46 } elseif ($namespace !== 0) {
47 $namespace = str_replace(':', '/', $namespace);
52 …rray($state, array($dataspeed, $datafx, $datatimeout, $width, $height, $namespace, $metadata, $obj…
123 function _getImages($namespace, $addimgs) { argument
130 …if ($namespace !== 0) { $files = glob($conf['mediadir'].'/'.$namespace."/*.{jp*g,png,gif}", GLOB_…
/plugin/struct/types/
H A DPage.php3 namespace dokuwiki\plugin\struct\types;
225 // absolute namespace?
257 // migrate autocomplete options 'namespace' and 'postfix' to 'filter'
259 if (!empty($config['autocomplete']['namespace'])) {
260 $config['autocomplete']['filter'] = $config['autocomplete']['namespace'];
261 unset($config['autocomplete']['namespace']);
/plugin/displayorphans/
H A D_local.php40 foreach ($ignoreNamespaces as $key => $namespace)
42 $namespace = rtrim($namespace, ':') . ':';
43 $sub = substr($id, 0, strlen($namespace));
44 if ($namespace == $sub) { return true; }
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DClover.php63 $namespace = 'global';
103 $namespace = $class['package']['namespace'];
108 $xmlClass->setAttribute('namespace', $namespace);
206 if ($namespace == 'global') {
209 if (!isset($packages[$namespace])) {
210 $packages[$namespace] = $xmlDocument->createElement(
214 $packages[$namespace]->setAttribute('name', $namespace);
215 $xmlProject->appendChild($packages[$namespace]);
218 $packages[$namespace]->appendChild($xmlFile);
/plugin/usersubscriptions/
H A DREADME5 <usersubscriptions /> (lists all of the user subscriptions for the current namespace)
7 <usersubscriptions ns1:ns2 /> (lists all of the user subscriptions for the namespace ns1:ns2)
10 …ie : <usersubscriptions ns1:ns2 r=2 />, to use it with the current namespace use <usersubscription…
13 with the current namespace use <usersubscriptions . deletelink />,
16 with the current namespace use <usersubscriptions . quicksubscribe />,
18 …ubscriptions option to display items that are subscribed due to subscription to a parent namespace,
19 ie : <usersubscriptions ns1:ns2 quicksubscribe />, to use it with the current namespace use
/plugin/davcard/vendor/composer/
H A Dautoload_real.php27 foreach ($map as $namespace => $path) {
28 $loader->set($namespace, $path);
32 foreach ($map as $namespace => $path) {
33 $loader->setPsr4($namespace, $path);
/plugin/webdavclient/vendor/composer/
H A Dautoload_real.php27 foreach ($map as $namespace => $path) {
28 $loader->set($namespace, $path);
32 foreach ($map as $namespace => $path) {
33 $loader->setPsr4($namespace, $path);
/plugin/metadisplay/
H A DREADME.md3 Displays metadata for specified namespace or page
13 [[--no-colors] [--loglevel ] -n [--namespace] [ -p --page|.] [-e <off|on>]
20 …-n, --namespace metadata namespace; the -n option with no namespace or dot [.] …
23 -p, --page page name without namespace or extension, e.g. start
/plugin/mikioplugin/syntax/
H A Dcarousel.php58 $namespace = $data['dynamic'];
59 if (substr($namespace, -1) == ':') {
60 $namespace = substr($namespace, 0, -1);
63 $path = str_replace(':', '/', $namespace);
76 $page_id = $namespace . ':' . $page['id'];
/plugin/searchform/
H A Dscript.js21 let namespace = $ns.val();
25 namespace = excludednamespace;
29 return query + (namespace ? prefix + namespace : '');
/plugin/medialist/
H A DREADME.md6 stored in a given namespace.
9 In the namespace mode list, the button to open the namespace by the Fullscreen
14 …that defines the output of the list of media files. The scope can be a “page id” or a “namespace”.
17 …2. **namespace** : look up media files stored in the namespace. The parameter ends by `:` or `:*`,
19 Some replacement patterns for namespace templates --- `@ID@`, `@NS@`, `@PAGE@` --- are available
27 To list media files stored in the current namespace use:
31 To list media files stored in the current namespace and its sub-namesapces use:
48 * `{{medialist>@NAMESPACE@}}` shows files stored in the current namespace and sub namecpaces.
/plugin/pagetemplater/
H A Daction.php120 foreach ($this->pages as $namespace) {
121 $space = cleanID($namespace[0]);
123 return resolve_id($namespace[0], $namespace[1]);
138 foreach( $namespaces as $namespace ) {
140 if ( strlen(trim($namespace)) == 0 ) { continue; }
141 $this->pages[] = explode("=>", $namespace);
/plugin/davcal/vendor/composer/
H A Dautoload_real.php27 foreach ($map as $namespace => $path) {
28 $loader->set($namespace, $path);
32 foreach ($map as $namespace => $path) {
33 $loader->setPsr4($namespace, $path);
/plugin/evesso/phpoauthlib/src/OAuth/Common/
H A DAutoLoader.php15 protected $namespace = ''; variable in OAuth\\Common\\AutoLoader
25 * @param string $namespace The prefixed namespace this instance will load
28 public function __construct($namespace, $path) argument
30 $this->namespace = ltrim($namespace, '\\');
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/
H A DAutoLoader.php3 namespace OAuth\Common;
13 * @var string The namespace prefix for this instance.
15 protected $namespace = ''; variable in OAuth\\Common\\AutoLoader
25 * @param string $namespace The prefixed namespace this instance will load
26 * @param string $path The filesystem path to the root of the namespace
28 public function __construct($namespace, $path) argument
30 $this->namespace = ltrim($namespace, '\\');
45 if (strpos($class, $this->namespace)
[all...]
/plugin/farmsync/lang/en/
H A Dupdate.txt1namespace. For a namespace ending with '':**'' means that all pages in this namespace and in all s…
/plugin/quickstats/GEOIP/vendor/composer/
H A Dautoload_real.php33 foreach ($map as $namespace => $path) {
34 $loader->set($namespace, $path);
38 foreach ($map as $namespace => $path) {
39 $loader->setPsr4($namespace, $path);

12345678910>>...28