Home
last modified time | relevance | path

Searched refs:exists (Results 26 – 50 of 487) sorted by relevance

12345678910>>...20

/plugin/combo/ComboStrap/
H A DFileSystems.php15 static function exists(Path $path): bool function in ComboStrap\\FileSystems
20 return LocalFileSystem::getOrCreate()->exists($path);
22 return WikiFileSystem::getOrCreate()->exists($path);
24 return MarkupFileSystem::getOrCreate()->exists($path);
31 * @throws ExceptionNotFound - if the file does not exists or the mime is unknown
82 if (FileSystems::exists($path)) {
280 if (FileSystems::exists($path)) {
365 if (!self::exists($directoryPath)){
H A DTemplateEngine.php89 if (FileSystems::exists($themePagesTemplateDirectory)) {
92 LogUtility::warning("The template theme directory ($themeDirectory) does not exists and was not taken into account");
94 if (FileSystems::exists($themePagesPartialsDirectory)) {
97 LogUtility::warning("The partials theme directory ($themeDirectory) does not exists");
99 if (FileSystems::exists($themeComponentsCssDirectory)) {
102 if (FileSystems::exists($themeComponentsHtmlDirectory)) {
335 if (FileSystems::exists($file)) {
348 if (FileSystems::exists($file)) {
/plugin/findologicxmlexport/vendor/hoa/protocol/Bin/
H A DResolve.php75 $exists = true;
83 $exists = false;
151 $resolved = resolve($path, $exists, $unfold);
/plugin/randominc/
H A Daction.php88 foreach ($hasPart as $page => $exists) {
95 if (@file_exists($file) != $exists) {
97 } else if ($exists) {
H A Dsyntax.php97 resolve_pageid(getNS($ID), $id, $exists); // resolve shortcuts
110 resolve_pageid(getNS($ID), $an_id, $exists); // resolve shortcuts
168 $exists = $page['exists'];
175 $renderer->meta['relation']['references'][$id] = $exists;
176 $renderer->meta['relation']['haspart'][$id] = $exists;
/plugin/combo/action/
H A Dqualitymessage.php58 $exists = $INFO['exists'] ?? null;
59 if (!$exists) {
H A Danalytics.php73 $exists = $INFO['exists'] ?? null;
74 if (!$exists) {
/plugin/popupviewer/
H A Daction.php131 $event->data['exists'] = $exists = @file_exists($file) && @is_file($file);
132 $event->data['type'] = $exists ? 'media' : 'pages';
134 if ( !$exists ) {
/plugin/mcitem/
H A Dsyntax.php117 resolve_mediaid(getNS($ID), $imageName, $exists, $this->date_at, true);
119 if ($exists) {
/plugin/strata/types/
H A Dpage.php22 resolve_pageid(getNS($hint),$value,$exists);
35 resolve_pageid($base,$value,$exists);
/plugin/publist/
H A Dsyntax.php136 $exists = false;
138 resolve_pageid($INFO['namespace'], $id, $exists);
139 if ( $exists ) {
/plugin/farmsync/_test/mock/
H A DFarmSyncUtil.php19 * @param bool $exists
21 public function setPageExists($animal, $page, $exists) { argument
22 $this->remoteData[$animal][$page]['exists'] = $exists;
/plugin/bookcreator/action/
H A Dpagetools.php141 $exists = page_exists($ID);
144 if(!$exists || ($this->getConf('skip_ids') !== '' && preg_match("/$skipPagesRegexp/i", $ID))) {
/plugin/farm/
H A Dsoapserver.php150 if(!dokuwiki_farm_animal::exists($name)) return array('success' => false);
162 if(!dokuwiki_farm_animal::exists($args['name'])) return array('exists' => 0);
180 if(!dokuwiki_farm_animal::exists($name)) return array();
194 if(!dokuwiki_farm_animal::exists($name)) return array();
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
H A DAnalyzer.php426 $exists = false;
432 $exists = true;
439 if (false == $exists) {
469 $exists = false;
475 $exists = true;
482 if (false == $exists) {
/plugin/sha3sum/
H A DSha3.php381 static $exists = null;
382 if ($exists === null) {
383 $exists = \function_exists('\\mb_strlen');
386 if ($exists) {
408 static $exists = null;
409 if ($exists === null) {
410 $exists = \function_exists('\\mb_substr');
413 if ($exists) {
/plugin/memcache/
H A Dhelper.php126 function exists($key){ function in helper_plugin_memcache
127 return memcache::exists($key);
/plugin/tools/
H A Daction.php83 $exists = false;
85 resolve_pageid('',$id,$exists);
92 if (!$exists || preg_match("/$sp/i",$ID))
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/Backend/
H A DPDO.php129 $exists = false;
131 if ($lock->token == $lockInfo->token) $exists = true;
134 if ($exists) {
/plugin/publistx/
H A Dsyntax.php156 $exists = false;
158 resolve_pageid($INFO['namespace'], $id, $exists);
159 if ( $exists ) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/Backend/
H A DPDO.php129 $exists = false;
131 if ($lock->token == $lockInfo->token) $exists = true;
134 if ($exists) {
/plugin/linksenhanced/syntax/
H A Dlink.php187 $exists = null;
188 $url = $renderer->_resolveInterWiki($wikiName, $wikiUri, $exists);
205 if($exists !== null && !$isImage) {
206 if($exists) {
373 resolve_pageid(getNS($ID),$id,$exists);
378 if ( $exists ) {
/plugin/drawio/
H A Dsyntax.php84 resolve_mediaid($current_ns, $media_id, $exists);
86 if(!$exists){
/plugin/nsexport/packer/ziphtml/
H A Drenderer.php64 resolve_pageid(getNS($ID),$id,$exists);
67 if ( $exists ) {
198 resolve_mediaid(getNS($ID),$src, $exists);
220 if (!$exists)
/plugin/ckgdoku/action/
H A Dtagapi.php62 $exists = false;
64 resolve_pageID($this->tagplugin->namespace, $id, $exists);

12345678910>>...20