Home
last modified time | relevance | path

Searched refs:cname (Results 1 – 2 of 2) sorted by path

/dokuwiki/inc/
H A DDraft.php15 protected $cname;
29 $this->cname = getCacheName("$client\n$ID", '.draft');
30 if (file_exists($this->cname) && file_exists(wikiFN($ID))) {
31 if (filemtime($this->cname) < filemtime(wikiFN($ID))) {
45 return $this->cname;
55 return file_exists($this->cname);
89 'cname' => $this->cname,
94 $draft['hasBeenSaved'] = io_saveFile($draft['cname'], serialize($draft));
96 $INFO['draft'] = $draft['cname'];
14 protected $cname; global() variable in dokuwiki\\Draft
[all...]
/dokuwiki/inc/Parsing/Handler/
H A DBlock.php141 $cname = $call[0];
142 if ($cname == 'plugin') {
143 $cname = 'plugin_' . $call[1][0];
151 if (in_array($cname, $this->stackClose) && (!$plugin || $plugin_close)) {
157 if (in_array($cname, $this->stackOpen) && (!$plugin || $plugin_open)) {
166 if (in_array($cname, $this->blockClose) && (!$plugin || $plugin_close)) {
172 if (in_array($cname, $this->blockOpen) && (!$plugin || $plugin_open)) {
178 if ($cname == 'eol') {