Home
last modified time | relevance | path

Searched +full:status +(+path:plugin +path:discussion) -(+path:plugin +path:discussion +path:lang) (Results 1 – 7 of 7) sorted by relevance

/plugin/discussion/
H A Dhelper.php73 if ((!$comments['status']) || (($comments['status'] == 2) && (!$num))) return '';
119 $status = $data['status'];
122 …if (!$status || (($status == 2) && (!$number))) continue; // skip if comments are off or closed wi…
136 'status' => $status,
252 if ($data['status'] === 0) return false;
H A Dadmin.php46 $this->_changeStatus($_REQUEST['status']);
141 * Outputs header, page ID and status of a discussion thread
163 ptln($this->getLang('status').': <select name="status" size="1">', 10);
165 $selected = (($key == $thread['status']) ? ' selected="selected"' : '');
193 $thread['status'] = $data['status'];
195 if (!$data['status']) return false; // comments are turned off
345 * Changes the status of a comment
357 $old = $data['status'];
361 $data['status'] = $new;
H A Dconvert.php84 io_saveFile($file['new'], serialize(array('status' => 1, 'number' => 0)));
98 if (!isset($comments['status'])) $comments['status'] = 1;
H A Daction.php412 // set status to show the comment form
413 $data['status'] = 1;
520 $data = array('status' => 1, 'number' => 0);
842 if (($data['status'] == 1) && !$reply && $comment['show']
1435 if ((!$comments['status']) || (($comments['status'] == 2) && (!$num))) return false;
1666 $status = ($this->isDiscussionEnabled() ? 1 : 0);
1669 $status = $meta['plugin_discussion']['status'];
1671 } else if ($status == 1) {
1677 if ($status || @file_exists($file)) {
1683 …', $data) || $data['title'] !== $title || !isset($data['status']) || $data['status'] !== $status) {
[all …]
H A DCOPYING255 of preserving the free status of all derivatives of our free software and
/plugin/discussion/syntax/
H A Dcomments.php66 if ($match == ':off') $status = 0;
67 else if ($match == ':closed') $status = 2;
68 else $status = 1;
70 return array($status, $title);
82 list($status, $title) = $data;
85 $renderer->meta['plugin_discussion'] = array('status' => $status, 'title' => $title);
H A Dthreads.php151 $page['class'] = 'discussion_status'.$page['status'];