Home
last modified time | relevance | path

Searched refs:date (Results 26 – 50 of 2857) sorted by relevance

12345678910>>...115

/plugin/quickstats/scripts/
H A Dextended_data.php89 $date = rawurldecode($_POST['date']);
113 $date = rawurldecode($_POST[$key]);
177 else $temp = load_data($type,$date);
246 function load_data($which,$date) { argument
252 $file['ua'] =$meta_path . $date .'/ua.ser';
383 $ua_data = load_data('ua',$date);
414 function qs_output_agents($agents,$date) { argument
428 $agents = qs_agent_search_i ($agent,$date);
429 qs_output_agents($agents,$date) ;
434 $date = rawurldecode($_POST[$key]);
[all …]
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DDayOfMonthField.php34 * @return \DateTime Returns the nearest date
59 public function isSatisfiedBy(DateTime $date, $value) argument
66 $fieldValue = $date->format('d');
70 return $fieldValue == $date->format('t');
78 return $date->format('j') == self::getNearestWeekday(
79 $date->format('Y'),
80 $date->format('m'),
85 return $this->isSatisfied($date->format('d'), $value);
88 public function increment(DateTime $date, $invert = false) argument
91 $date
[all...]
H A DMonthField.php12 public function isSatisfiedBy(DateTime $date, $value) argument
24 return $this->isSatisfied($date->format('m'), $value);
27 public function increment(DateTime $date, $invert = false) argument
30 $date->modify('last day of previous month');
31 $date->setTime(23, 59);
33 $date->modify('first day of next month');
34 $date->setTime(0, 0);
/plugin/monthcal/
H A Dsyntax.php66 $data['month'] = date('m');
67 $data['year'] = date('Y');
314 foreach($date_range as $date) {
321 $html .= '<td class="' . $css_td_border . '">' . $date->format("W") . '</td>';
331 …$id = $data['namespace'] . ':' . $date->format('Y') . ':' . $date->format('m') . ':' . $date->form…
334 …resolve_pageid($data['namespace'] . ':' . $date->format('Y') . ':' . $date->format('m'), $date->fo…
336 $html_day = html_wikilink($id, $date->format('d'));
338 $html_day = $date->format('d');
341 $html_day = html_wikilink($id, $date->format('d'));
344 $html_day = '<a href="#section' . $date->format('d') . '">' . $date->format('d') . '</a>';
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Ddate_namedargs.test2 "date" filter
4 {{ date|date(format='d/m/Y H:i:s P', timezone='America/Chicago') }}
5 {{ date|date(timezone='America/Chicago', format='d/m/Y H:i:s P') }}
6 {{ date|date('d/m/Y H:i:s P', timezone='America/Chicago') }}
9 return ['date' => mktime(13, 45, 0, 10, 4, 2010)]
/plugin/schedule/lib/
H A DscheduleForm.js131 var date = document.getElementById ("scheduleFrom").value;
132 if (!date)
133 date = new Date ();
135 date = date.split ('/'); // XXX bug format FR seulement
136 date [1] = parseInt (date [1]) - 1;
137 if (date[2] < 100)
138 date [2] = parseInt (date [2]) + 2000;
139 date = new Date (date[2], date [1], date [0]);
141 var rankDay = date.getDay();
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
H A Ddhtmlxgantt_csp.js.map1date","date_to_str","format","utc","replace","a","to_fixed","getUTCDate","getDate","getUTCMonth","…
/plugin/date/
H A DREADME.md1 dokuwiki-plugin-date
4date. This plugin gives you the possibilities of the strftime or date function. With the relative
6 The documentation for the date plugin is available online at:
8 * http://dokuwiki.org/plugin:date
H A Dplugin.info.txt1 base date
4 date 2016-08-28
5 name date plugin
6 desc Wrapper about the php command strftime and date
7 url https://dokuwiki.org/plugin:date
/plugin/datepicker/script/jscalendar-1.0/
H A Dcalendar.js352 date = new Date(cal.date);
362 date = new Date(cal.date);
599 date = cal.date;
614 date = new Date(cal.date);
705 cal.getDateStatus(date, date.getFullYear(), date.getMonth(), date.getDate())) {
710 if (!date.equalsTo(cal.date)) {
916 var date = this.date;
1031 var date = new Date(cal.date);
1036 var date = new Date(cal.date);
1117 this.date = new Date(date);
[all …]
/plugin/timetrack/
H A Daction.php210 foreach($dateValues as $date => $value) {
212 $dates[$date] += (int)$value;
220 foreach($dates as $date=>$datevalue) {
223 $errors[] = sprintf($this->getLang('err_max_hours'),$date);
237 foreach($dateValues as $date => $value) {
246 …if(isset($dbUserValues[$project_id][$task_id][$date]) && $dbUserValues[$project_id][$task_id][$dat…
247 $dbUserValues[$project_id][$task_id][$date]['value'] = $value;
250 $dbUserValues[$project_id][$task_id][$date]['value'] = $value;
263 foreach($dateValues as $date => $value) {
264 …ect_id][$task_id][$date]['value_db'] = $dbUserValues[$project_id][$task_id][$date]['value']?$dbUse…
[all …]
/plugin/mediatooltip/
H A Dscript.js6 var date, output="",title = "";
41 date = tarray[1].replace(/[.\-_]\(\)/g,':');
42 date = ' <i> (' + date + ') </i>';
43 title = title.replace(/_(\d\d[.\-_]\d\d([.\-_]\d\d)?)_/, date);
46 date = ar[1] ;
47 if(date) {
48 ar = date.split(/\s/);
49date = ar[0] + ' (<i>' + ar[1] + '</i>)';
50 title += "<br />" + date;
/plugin/combo/ComboStrap/
H A DDateTag.php9 * Format a date
14 public const CANONICAL = "variable:date";
16 public const DATE_ATTRIBUTE = "date";
17 public const TAG = "date";
25 * @param string $date
31 public static function formatDateString(string $date, string $format = DateTag::DEFAULT_FORMAT, string $lang = null): string argument
33 // https://www.php.net/manual/en/function.date.php
34 // To format dates in other languages, you should use the setlocale() and strftime() functions instead of date().
66 // throw new ExceptionBadSyntax("The language ($lang) / locale ($derivedLocale) is not available as locale on the server. You can't then format the value ($date) in this language.");
70 $date
[all...]
/plugin/strata/types/
H A Ddate.php10 * The date type.
19 $date = new DateTime();
20 $date->setTimestamp((int)$value);
23 $R->cdata($date->format($format));
36 $date = date_create_from_format($format, $value);
39 if($date === false) {
42 return $date->getTimestamp();
50 'hint'=>'different date format'
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/src/Jms/Handler/
H A DXmlSchemaDateHandler.php78 …public function serializeDate(XmlSerializationVisitor $visitor, \DateTime $date, array $type, Cont… argument
81 $v = $date->format('Y-m-d');
99 …public function serializeDateTime(XmlSerializationVisitor $visitor, \DateTime $date, array $type, … argument
102 $v = $date->format(\DateTime::W3C);
118 …public function serializeTime(XmlSerializationVisitor $visitor, \DateTime $date, array $type, Cont… argument
120 $v = $date->format('H:i:s');
121 if ($date->getTimezone()->getOffset($date) !== $this->defaultTimezone->getOffset($date)) {
122 $v .= $date->format('P');
/plugin/move/_test/
H A Dlog.test.php19 $date = date('Y-m-d H:i:s', $now);
23 $expected_log = "$now\t$date\tP\toldpage\tnewpage\tsuccess\t\n";
37 $date = date('Y-m-d H:i:s', $now);
41 $expected_log = "$now\t$date\tP\toldpage\tnewpage\tfailed\tTestMessage01\n";
/plugin/zotero/
H A DZoteroEntry.php12 private $date; variable in ZoteroEntry
56 $this->date = $value;
61 return $this->date;
77 $date = $this->getYear();
78 if ($date === 0)
80 $date = $this->getDate();
85 return $this->getAuthor() . ": " . $this->getTitle() . " (" . $date . ")";
91 $title = str_replace(self::DATE_PLACEHOLDER, $date, $title);
/plugin/statdisplay/helper/
H A Dgraph.php103 * @param string $date
105 private function monthby($by, $date = '') argument
107 if (!$date) $date = date('Y-m');
108 $data = $this->log->logdata[$date];
145 * @param string $date
147 private function trafficby($by, $date = '') argument
149 if (!$date) $date = date('Y-m');
150 $data = $this->log->logdata[$date];
179 * @param string $date month to display
181 private function userdownloads($date) argument
[all …]
/plugin/timer/
H A Dsyntax.php108 $renderer->doc .= " From:" . date($conf['dformat'],$st);
109 $renderer->doc .= " Now:<b>" . date($conf['dformat']) . "</b>";
110 $renderer->doc .= " To:" . date($conf['dformat'],$et);
116 $renderer->doc .= " Now:<b>" . date($conf['dformat']) . "</b>";
117 $renderer->doc .= " From:" . date($conf['dformat'],$st);
118 $renderer->doc .= " To:" . date($conf['dformat'],$et);
120 $renderer->doc .= " From:" . date($conf['dformat'],$st);
121 $renderer->doc .= " To:" . date($conf['dformat'],$et);
122 $renderer->doc .= " Now:<b>" . date($conf['dformat']) . "</b>";
/plugin/schedule/
H A Dschedules.class.php217 $this->date = $this->scheduleRoot->df2ds ($date);
752 $dn_today = mktime (0, 0, 0, date ('n'), date ('j'), date ('Y'));
753 …$dn_start = mktime (0, 0, 0, date ('m', $dn_showDay), date ('d', $dn_showDay)-date ('w', $dn_showD…
757 …$dn_prev = mktime (0, 0, 0, date ('m', $dn_showDay)-1, date ('d', $dn_showDay), date ('Y', $dn_sh…
758 …$dn_next = mktime (0, 0, 0, date ('m', $dn_showDay)+1, date ('d', $dn_showDay), date ('Y', $dn_sh…
789 … $dn_day = mktime(0, 0, 0, date ('m', $dn_day) , date ('d', $dn_day)+1, date ('Y', $dn_day));
824 …$dn_startWeek = mktime (0, 0, 0, date ('m', $dn_from), date ('d', $dn_from) - date ('w', $dn_from)…
840 …$nbMonth = floor ((date ('m', $dn_start) + date ('Y', $dn_start)*12 - (date ('m', $dn_from) + date
866 …$startYear = date ('Y', $dn_start) - (date ('Y', $dn_start) - date ('Y', $dn_from)) % $event->repe…
929 … $dn_day = mktime(0, 0, 0, date ('m', $dn_day), date ('d', $dn_day)+1, date ('Y', $dn_day));
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/
H A DChromeOsDeviceActiveTimeRanges.php29 public $date; variable in Google\\Service\\Directory\\ChromeOsDeviceActiveTimeRanges
48 public function setDate($date) argument
50 $this->date = $date;
57 return $this->date;
/plugin/noticeboard/noticeboard/classes/
H A Drss.php81 $out .= date("d.m.Y H:i",$notice->getStartTime());
83 $out .= date("d.m.Y",$notice->getStartTime());
91 $out .= date("d.m.Y H:i",$notice->getEndTime());
93 $out .= date("d.m.Y",$notice->getEndTime());
99 $out .= date("d.m.Y",$notice->getDeadline());
111 $out .= "<pubDate>".date(DATE_RFC822,$notice->getStartTime())."</pubDate>";
121 $out .= date("d.m.Y H:i",$notice->getStartTime());
123 $out .= date("d.m.Y",$notice->getStartTime());
128 $out .= date("d.m.Y",$notice->getDeadline());
134 $out .= "<pubDate>".date(DATE_RFC822,$notice->getDeadline())."</pubDate>";
/plugin/noticeboard/classes/
H A Drss.php81 $out .= date("d.m.Y H:i",$notice->getStartTime());
83 $out .= date("d.m.Y",$notice->getStartTime());
91 $out .= date("d.m.Y H:i",$notice->getEndTime());
93 $out .= date("d.m.Y",$notice->getEndTime());
99 $out .= date("d.m.Y",$notice->getDeadline());
111 $out .= "<pubDate>".date(DATE_RFC822,$notice->getStartTime())."</pubDate>";
121 $out .= date("d.m.Y H:i",$notice->getStartTime());
123 $out .= date("d.m.Y",$notice->getStartTime());
128 $out .= date("d.m.Y",$notice->getDeadline());
134 $out .= "<pubDate>".date(DATE_RFC822,$notice->getDeadline())."</pubDate>";
/plugin/task/syntax/
H A Dtask.php32 list($user, $date) = explode('?', $match);
35 $date = $my->_interpretDate($date);
39 'date' => array('due' => $date),
55 return array($user, $date, $priority);
61 list($user, $date, $priority) = $data;
78 if ($date && ($sn < 3)) {
79 if ($date + 86400 < time()) $due = 'overdue';
80 elseif ($date < time()) $due = 'due';
104 if ($date) {
292 function _hCalDate($date) { argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdExchangeBuyer/
H A DCreativeFilteringReasons.php23 public $date; variable in Google\\Service\\AdExchangeBuyer\\CreativeFilteringReasons
27 public function setDate($date) argument
29 $this->date = $date;
33 return $this->date;

12345678910>>...115