Home
last modified time | relevance | path

Searched full:exists (Results 1 – 25 of 122) sorted by relevance

12345

/dokuwiki/_test/tests/Action/
H A DActionTest.php17 array('Login', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
18 array('Logout', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
19 array('Search', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
20 array('Recent', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
21 array('Profile', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
22 array('ProfileDelete', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
23 array('Index', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
24 array('Sitemap', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
25 array('Denied', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
26 array('Register', AUTH_NONE, array('exists' => true, 'ismanager' => false)),
[all …]
/dokuwiki/inc/lang/en/
H A Dconflict.txt1 ====== A newer version exists ======
3 A newer version of the document you edited exists. This happens when another user changed the docum…
H A Donceexisted.txt3 You've followed a link to a page that no longer exists. You can check the list of **Old revisions**…
/dokuwiki/inc/Action/
H A DEdit.php22 if ($INFO['exists']) {
38 if ($INFO['exists'] && !$INFO['writable']) {
59 if ($INFO['exists']) {
74 } elseif (!$INFO['exists']) {
H A DConflict.php21 if ($INFO['exists']) {
H A DSource.php31 if ($INFO['exists']) {
H A DDraft.php23 if ($INFO['exists']) {
H A DSave.php21 if ($INFO['exists']) {
H A DSitemap.php46 // Check if sitemap file exists, otherwise create it
/dokuwiki/lib/plugins/authplain/lang/ku/
H A Dlang.php7 $lang['userexists'] = 'Sorry, a user with this login already exists.';
/dokuwiki/inc/lang/mg/
H A Dconflict.txt1 ====== A newer version exists ======
/dokuwiki/.github/workflows/
H A Drelease-preparation.yml55 - name: Check if a tag of the new release already exists
58 echo "::error::Tag already exists, you may need to build a hotfix instead"
95 - [ ] Check that a meaningful [changelog](https://www.dokuwiki.org/changes) exists
H A Drelease-build.yml24 - name: Check if a tag already exists
27 echo "::error::Tag already exists, be sure to update the VERSION file for a hotfix"
/dokuwiki/lib/plugins/authpdo/lang/en/
H A Dlang.php9 $lang['userexists'] = 'Sorry, a user with this login already exists.';
/dokuwiki/lib/plugins/authplain/lang/en/
H A Dlang.php6 $lang['userexists'] = 'Sorry, a user with this login already exists.';
/dokuwiki/inc/Feed/
H A DFeedMediaProcessor.php103 $this->data['exists'] = true;
129 if (!isset($this->data['exists'])) {
130 $this->data['exists'] = media_exists($this->id);
132 return $this->data['exists'];
H A DFeedPageProcessor.php116 $this->data['exists'] = true;
142 if (!isset($this->data['exists'])) {
143 $this->data['exists'] = page_exists($this->id);
145 return $this->data['exists'];
/dokuwiki/inc/
H A Dcompatibility.php45 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
62 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
79 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
H A DDraft.php39 * Get the filename for this draft (whether or not it exists)
49 * Checks if this draft exists on the filesystem
/dokuwiki/inc/Cache/
H A DCacheRenderer.php49 foreach ($metadata['relation']['references'] as $id => $exists) {
50 if ($exists != page_exists($id, '', false)) {
/dokuwiki/_test/tests/inc/
H A Dcommon_pageinfo.test.php37 $info['exists'] = false;
83 $info['exists'] = true;
115 $info['exists'] = true;
183 $info['exists'] = true;
235 $info['exists'] = true;
295 $info['exists'] = true;
H A Dtemplate_tpl_get_action.php20 $INFO['exists'] = true;
46 $INFO['exists'] = true;
72 $INFO['exists'] = false;
98 $INFO['exists'] = true;
123 $INFO['exists'] = true;
/dokuwiki/inc/ChangeLog/
H A DRevisionInfo.php185 $exists = file_exists(mediaFN($id, $rev));
192 $exists = page_exists($id, $rev);
195 if ($exists) {
234 $exists = file_exists(mediaFN($id, $rev));
238 $exists = page_exists($id, $rev);
240 if ($exists) {
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingMulticheckbox.php83 … // test equivalent to ($this->_other == 'always' || ($other && $this->_other == 'exists')
84 // use != 'exists' rather than == 'always' to ensure invalid values default to 'always'
85 if ($this->other != 'exists' || $other) {
/dokuwiki/lib/exe/
H A Ddetail.php31 // check if image exists

12345