Home
last modified time | relevance | path

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

/dokuwiki/inc/
DDraft.php15 protected $cname; variable in dokuwiki\\Draft
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,
117 if (!file_exists($this->cname)) {
119 "Draft for page $this->id and user $this->client doesn't exist at $this->cname."
122 $draft = unserialize(io_readFile($this->cname, false));
[all …]
/dokuwiki/inc/Parsing/Handler/
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') {