Home
last modified time | relevance | path

Searched refs:exists (Results 1 – 25 of 487) sorted by relevance

12345678910>>...20

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Firestore/
H A DPrecondition.php25 public $exists; variable in Google\\Service\\Firestore\\Precondition
34 public function setExists($exists) argument
36 $this->exists = $exists;
43 return $this->exists;
/plugin/pagetitle/
H A Dhelper.php52 resolve_pageid('', $id, $exists);
55 resolve_pageid('', $id, $exists);
56 if (!$exists) {
58 resolve_pageid('', $id, $exists);
65 $items[] = '<bdi>'.$this->html_pagelink($id, $name, $exists).'</bdi>';
83 * @param bool $exists
87 public function tpl_pagelink($id = null, $name = null, $exists = null, $print = true) argument
91 $out = $this->html_pagelink($id, $name, $exists);
98 private function html_pagelink($id = null, $name = null, $exists = null) argument
107 if (is_null($exists)) {
[all …]
/plugin/popupviewer/syntax/
H A Dviewer.php59 $exists = false;
62 resolve_mediaid(getNS($ID),$id,$exists);
63 if ( !$exists ) {
69 return array($id, $name, $title, $w, $h, $orig, $close, null, $keepOpen, $exists, $p1);
77 … list($id, $name, $title, $w, $h, $orig, $close, $isImageMap, $keepOpen, $exists, $p1) = $data;
88 if ( $exists ) {
120 resolve_pageid(getNS($ID),$id,$exists);
148 …$renderer->doc .= $this->_renderFinalPopupImage($id, $exists, $more, $name, $isImageMap, $script, …
153 function _renderFinalPopupImage($id, $exists, $more, $name, $isImageMap, $script, $class='') { argument
155 $more .= ' class="wikilink' . ($exists?1:2) . (!empty($class) ? ' ' . $class : '' ). '"';
/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
H A DChainLoader.php59 if ($loader instanceof ExistsLoaderInterface && !$loader->exists($name)) {
77 if ($loader instanceof ExistsLoaderInterface && !$loader->exists($name)) {
95 public function exists($name) function in Twig\\Loader\\ChainLoader
105 if ($loader->exists($name)) {
131 if ($loader instanceof ExistsLoaderInterface && !$loader->exists($name)) {
149 if ($loader instanceof ExistsLoaderInterface && !$loader->exists($name)) {
/plugin/imagebox/
H A Dsyntax.php40 $exists = false;
41 resolve_mediaid(getNS($ID), $src, $exists);
48 if ($exists){
109 resolve_mediaid(getNS($ID), $src, $exists);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/
H A DFilesystemTest.php234 $this->assertFalse($loader->exists("foo\0.twig"));
235 $this->assertFalse($loader->exists('../foo.twig'));
236 $this->assertFalse($loader->exists('@foo'));
237 $this->assertFalse($loader->exists('foo'));
238 $this->assertFalse($loader->exists('@foo/bar.twig'));
241 $this->assertTrue($loader->exists('index.html'));
243 $this->assertTrue($loader->exists('@foo/index.html'));
/plugin/multilingual/
H A Dhelper.php66 $exists = true;
76 resolve_pageid(getNS($ID),$link,$exists);
78 return array($link,$flag,$exists);
85 return array($link,$name,$exists);
/plugin/html2pdf/multilingual/
H A Dhelper.php66 $exists = true;
76 resolve_pageid(getNS($ID),$link,$exists);
78 return array($link,$flag,$exists);
85 return array($link,$name,$exists);
/plugin/magnifier/
H A Dsyntax.php50 if ( empty($id) ) { $exists = false; } else
55 $exists = @file_exists($file) && @is_file($file);
62 if ( $exists ) {
86 function _renderFinalPopupImage($id, $exists, $more, $name, $isImageMap, $script, $class='') { argument
88 $more .= ' class="wikilink' . ($exists?1:2) . (!empty($class) ? ' ' . $class : '' ). '"';
/plugin/include/syntax/
H A Dfooter.php51 $exists = page_exists($page);
55 $class = ($exists ? 'wikilink1' : 'wikilink2');
72 if ($flags['date'] && $exists) {
82 if ($flags['mdate'] && $exists) {
92 if ($flags['user'] && $exists) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEntry.php65 if (($exists = $this->get($attribute, true)) !== null) {
66 $exists->add(...$attribute->getValues());
87 if (($exists = $this->get($attribute, true)) !== null) {
88 $exists->remove(...$attribute->getValues());
129 $exists = false;
132 $exists = true;
137 if (!$exists) {
166 * Check if a specific attribute exists on the entry.
/plugin/workflow/syntax/
H A Ddecision.php17 $exists = false;
18 resolve_pageid('wf', $page, $exists);
19 $exists = $exists ? '1' : '2';
20 …return "<a class=\"wikilink$exists\" title=\"$page\" href=\"doku.php?id=$page\" onclick=\"$onclick…
/plugin/qc/
H A Dhelper.php28 * It checks if the page exists, if QC was disabled for this page, general
43 $exists = $INFO['exists'];
45 $exists = page_exists($id);
47 if (!$exists) return false;
/plugin/oauthauthsch/
H A DDotAccess.php29 if (static::exists($array, $key)) {
36 if (static::accessible($array) && static::exists($array, $segment)) {
63 protected static function exists($array, $key) function in dokuwiki\\plugin\\oauthauthsch\\DotAccess
/plugin/oauthgeneric/
H A DDotAccess.php31 if (static::exists($array, $key)) {
38 if (static::accessible($array) && static::exists($array, $segment)) {
59 * Determine if the given key exists in the provided array.
65 protected static function exists($array, $key)
63 protected static function exists($array, $key) global() function in dokuwiki\\plugin\\oauthgeneric\\DotAccess
/plugin/findologicxmlexport/vendor/hoa/protocol/
H A DProtocol.php163 * @param bool $exists If `true`, try to find the first that exists,
168 public function resolve($path, $exists = true, $unfold = false) argument
208 if (true !== $exists) {
223 if (true !== $exists) {
H A DWrapper.php78 * @param bool $exists If true, try to find the first that exists,
81 public static function realPath($path, $exists = true) argument
83 return Node::getRoot()->resolve($path, $exists);
593 * @param bool $exists If `true`, try to find the first that exists,
599 function resolve($path, $exists = true, $unfold = false) argument
601 return Hoa\Protocol::getInstance()->resolve($path, $exists, $unfold);
/plugin/combo/ComboStrap/
H A DFile.php58 * @deprecated uses {@link FileSystems::exists()} instead
60 public function exists() function in ComboStrap\\File
76 if(!$this->exists()){
150 if($this->exists()){
H A DLocalFileSystem.php28 function exists(Path $path): bool function in ComboStrap\\LocalFileSystem
54 // file does not exists
55 throw new ExceptionNotFound("The file ($path) does not exists");
67 if (!self::exists($path)) {
79 if (!$this->exists($path)) {
80 throw new ExceptionNotFound("The path ($path) does not exists, no creation time");
190 if (FileSystems::exists($closest)) {
202 if (FileSystems::exists($closest)) {
/plugin/button/
H A Dsyntax.php350 $exists = page_exists($resolveid);
351 if ($exists) {
356 $exists = media_exists($resolveid);
357 if ($exists) {
399 $exists = page_exists($id);
403 if ($exists) {
476 $exists = media_exists($src);
493 if ($exists)
501 if (!$exists) {
/plugin/duoshuo-dokuwiki/
H A Daction.php67 $exists = $info['exists'];
69 if($auto && $exists && $no_admin){
74 if($count >= 1 && $exists && $no_admin){
/plugin/listusergroup/
H A Dhelper.php101 $exists = true;
104 $exists = null;
106 resolve_pageid($confNS,$usertmp,$exists);
107 if (!$exists) continue;
/plugin/prettyphoto/
H A Drenderer.php25 resolve_mediaid(getNS($ID),$src, $exists);
45 if ($exists) {
52 if (!$exists) {
/plugin/farm/
H A Danimal.class.php33 if(self::exists($name)) {
115 if(!self::exists($this->name)) return null;
135 if(!self::exists($this->name)) return null;
185 if(!self::exists($this->name)) return null;
255 if(!self::exists($this->name)) return false;
278 if(!self::exists($this->name)) return null;
299 if(!self::exists($this->name)) return false;
520 if(!self::exists($this->name)) return '';
623 if(!self::exists($template)) {
652 if(!self::exists($name)) {
[all …]
/plugin/targetlink/
H A Dsyntax.php130 resolve_pageid(getNS($ID), $id, $exists, $xhtml->date_at, true);
135 if($exists) {
257 $exists = null;
258 $url = $xhtml->_resolveInterWiki($wikiName, $wikiUri, $exists);
271 if($exists !== null && !$isImage) {
272 if($exists) {

12345678910>>...20