Lines Matching +full:date +(+path:plugin +path:discussion) -(+path:plugin +path:discussion +path:lang)

289                     $comment['date'] = array('created' => $_REQUEST['date']);
527 if ($comment['date']['created']) {
528 $date = strtotime($comment['date']['created']);
530 $date = time();
533 if ($date == -1) {
534 $date = time();
537 $cid = md5($comment['user']['id'].$date); // create a unique id
549 'date' => array('created' => $date),
594 $this->_addLogEntry($date, $ID, 'cc', '', $cid);
646 $date = time();
657 $data['comments'][$cid]['date'] = array(
658 'created' => $data['comments'][$cid]['date']
691 $data['comments'][$cid]['date']['modified'] = $date;
701 $this->_addLogEntry($date, $ID, $type, '', $cid);
766 // comment head with date and user data
786 if (is_array($comment['date'])) { // new format
787 $created = $comment['date']['created'];
788 $modified = $comment['date']['modified'];
790 $created = $comment['date'];
1012 // allow setting the comment date
1017 <span><?php echo $this->getLang('date') ?>:</span>
1018 … <input type="text" class="edit" name="date" id="discussion__comment_date" size="50" />
1119 * @param int $date
1125 protected function _addLogEntry($date, $id, $type = 'cc', $summary = '', $extra = '') { argument
1131 if(!$date) {
1132 $date = time();
1139 'date' => $date,
1191 if ($log['date'] < $trim_time) {
1192 …$old_lines[$log['date'].".$i"] = $lines[$i]; // keep old lines for now (append .$i to prevent …
1194 $out_lines[$log['date'].".$i"] = $lines[$i]; // definitely keep these lines
1249 'DATE' => dformat($comment['date']['created'], $conf['dformat']),
1501 '@DATE@' => dformat(time(), $conf['dformat']),
1744 if (is_array($a['date'])) {
1746 $createdA = $a['date']['created'];
1749 $createdA = $a['date'];
1752 if (is_array($b['date'])) {
1754 $createdB = $b['date']['created'];
1757 $createdB = $b['date'];