Searched refs:dformat (Results 1 – 25 of 91) sorted by relevance
1234
| /plugin/include/syntax/ |
| H A D | footer.php | 75 … $xhtml[] = '<abbr class="published" title="'.dformat($date, '%Y-%m-%dT%H:%M:%SZ').'">' 76 . dformat($date) 85 … $xhtml[] = '<abbr class="published" title="'.dformat($mdate, '%Y-%m-%dT%H:%M:%SZ').'">' 86 . dformat($mdate)
|
| /plugin/date/ |
| D | syntax.php | 187 $dformat = $this->getConf('dpformat'); 190 $xhtml = strftime($dformat); 192 $xhtml = strftime($dformat, strtotime("+1 day")); 194 $xhtml = strftime($dformat, strtotime("-1 day"));
|
| /plugin/publish/action/ |
| H A D | banner.php | 156 …printf($this->getLang('apr_draft'), '<span class="approval_date">' . dformat($revision) . '</span>… 172 '<span class="approval_date">' . dformat($this->hlp->getApprovalDate()) . '</span>', 186 dformat($previousApproved));
|
| /plugin/numbering/scripts/ |
| D | getnum.php | 40 $dformat = urldecode($helper->getConfValue('datestyle')); 41 $time = strftime($dformat);
|
| /plugin/authgooglesheets/ |
| D | auth.php | 47 $this->helper->update($user, ['lastlogin' => dformat()]); 90 $userData['created'] = dformat();
|
| /plugin/cosmocode/ |
| D | admin.php | 80 'dt' => dformat(null, '%Y-%m-%d'), 158 echo ' ' . sprintf($this->getLang('valid_until'), dformat($data['exp']));
|
| /plugin/approve/helper/ |
| H A D | tpl.php | 63 $html .= ' ' . dformat(strtotime($page_revision['approved'])); 97 $noprintContent .= ' ' . dformat(strtotime($page_revision['ready_for_approval']));
|
| /plugin/qc/ |
| D | Output.php | 84 $html .= '<dd>' . dformat($this->data['created']) . '</dd>'; 87 $html .= '<dd>' . dformat($this->data['modified']) . '</dd>';
|
| /plugin/socialcards/ |
| D | action.php | 159 'content' => dformat($_dates['created']), 163 'content' => dformat($_dates['modified']),
|
| /plugin/miniblog/syntax/ |
| D | entry.php | 77 …$renderer->doc .= dformat($entry['date']).' · '.$entry['user'].' · <a href="'.wl($entry['id'],'',t… 104 $renderer->doc .= '<span class="entry-date">'.dformat($entry['date']).'</span>';
|
| /plugin/preservefilenames/ |
| D | action_adorabelle.php | 75 $info .= '<i>'.dformat($item['mtime']).'</i>'; 168 $date = dformat($item['mtime']);
|
| /plugin/telleveryone/ |
| D | admin.php | 119 ptln('<div>' . dformat($timestamp) . '</div>'); 147 … ptln('<div>' . dformat($timestamp) . ' ' . $edit_link . ' ' . $delete_link . '</div>');
|
| /plugin/advanced/admin/ |
| D | export.php | 197 $create_date = dformat(p_get_metadata($page_id, 'date created')); 198 $modified_date = dformat(p_get_metadata($page_id, 'date modified'));
|
| D | config.php | 168 … 'local_last_modify' => (file_exists($file_local) ? dformat(filemtime($file_local)) : ''), 169 …'protected_last_modify' => (file_exists($file_protected) ? dformat(filemtime($file_protected)) : '… 170 … 'default_last_modify' => (file_exists($file_default) ? dformat(filemtime($file_default)) : ''),
|
| /plugin/booking/ |
| D | action.php | 200 echo dformat($booking['start']) . ' - ' . dformat($booking['end']);
|
| /plugin/publish/ |
| H A D | syntax.php | 97 $updated = '<a href="' . wl($page[0]) . '">' . dformat($page[2]) . '</a>'; 108 dformat($last));
|
| /plugin/lastfm/ |
| D | action.php | 52 $dformat = $this->getConf('dformat');
|
| /plugin/blogmeta/ |
| D | action.php | 58 … print $this->getLang('posted')." ".strftime($conf['dformat'],$INFO['meta']['date']['created']);
|
| /plugin/acknowledge/ |
| D | action.php | 174 $html .= sprintf($this->getLang('ackGranted'), dformat($ack)); 183 . sprintf($this->getLang('ackDiff'), dformat($latest))
|
| /plugin/acknowledge/admin/ |
| D | report.php | 190 ($item['lastmod'] ? dformat($item['lastmod']) : '?') 192 echo '<td>' . ($item['ack'] ? dformat($item['ack']) : '') . '</td>';
|
| /plugin/bez/meta/ |
| H A D | Tpl.php | 131 return dformat(strtotime($date), '%Y-%m-%d'); 135 return dformat(strtotime($datetime), '%Y-%m-%d %H:%M');
|
| /plugin/pageseditees/ |
| D | admin.php | 106 $date=@strftime($conf['dformat'], filemtime($lock));
|
| /plugin/bookcreator/ |
| D | helper.php | 39 $out .= ' ('.dformat($item['mtime']).')';
|
| /plugin/pagequery/ |
| D | PageQuery.php | 107 $dformat = []; 226 $dformat[$key] = $this->dateFormat($key); 228 … $wformat[$key] = ($opt['spelldate']) ? $this->dateFormatWords($dformat[$key]) : ''; 232 $value = strftime($dformat[$key], $real_date); 410 * @param string $dformat 412 private function dateFormatWords(string $dformat): string argument 415 switch ($dformat) {
|
| /plugin/structpublish/action/ |
| H A D | banner.php | 111 '{revision}' => $this->makeLink($rev->getId(), $rev->getRev(), dformat($rev->getRev())), 112 … '{datetime}' => $this->makeLink($rev->getId(), $rev->getRev(), dformat($rev->getTimestamp())),
|
1234