Home
last modified time | relevance | path

Searched refs:days (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DReturnPolicyOnlinePolicy.php25 public $days; variable in Google\\Service\\ShoppingContent\\ReturnPolicyOnlinePolicy
34 public function setDays($days) argument
36 $this->days = $days;
43 return $this->days;
/plugin/fkstimer/
H A Dscript.js35 const days = time.getDate() + (time.getMonth() * 31) - 1;
38 if (days) {
39 html += addTimeElement(days, switchLang(days, 'day'));
41 if (days || hours) {
44 if (days < 100) {
48 if (!days) {
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Ddate_interval.test7 {{ date1|date('%d days %h hours') }}
8 {{ date1|date('%d days %h hours', timezone1) }}
17 2 days
18 2 days 0 hours
19 2 days 0 hours
H A Ddate_default_format_interval.test7 {{ date2|date('%d days') }}
10 $twig->getExtension('\Twig\Extension\CoreExtension')->setDateFormat('Y-m-d', '%d days %h hours');
15 2 days 0 hours
16 2 days
/plugin/structnotification/action/
H A Dnotification.php211 $days = date('Y-m-d', strtotime("+$value days"));
212 return $days >= $date;
214 $days = date('Y-m-d', strtotime("-$value days"));
215 return $date <= $days;
204 predicateTrue($date, $operator, $days) global() argument
/plugin/botbouncer/admin/
H A Dstatistics.php58 $days = 7;
59 $list = $this->_readlines($days);
76 printf('<p><b>'.$this->getLang('blocked').'</b></p>',$all,$days);
105 function _readlines($days=7){ argument
109 $date = time() - ($days*24*60*60);
/plugin/datedifference/
H A Dsyntax.php163 $days = $interval->format('%d');
178 if($days > 1)
179 $result .= "$days days ";
180 elseif($days == 1)
181 $result .= "$days day ";
/plugin/badbehaviour/
H A Dadmin.php60 $days = 7;
61 $list = $this->_readlines($days);
73 printf('<p><b>'.$this->getLang('blocked').'</b></p>',$all,$days);
156 function _readlines($days=7){ argument
160 $date = time() - ($days*24*60*60);
/plugin/structgantt/meta/
H A DGantt.php37 /** @var \DateTime[] all the days */
38 protected $days;
40 /** @var int number of days */
121 * Figure out the minimum and maximum dates and number of days inbetween
123 * @throws StructException when the range is not at least two days
145 $daynum = (new \DateTime($min))->diff(new \DateTime($max))->days;
153 'header' => 'j', // days
202 $this->days = $this->listDays($min, $max);
268 foreach ($headers as $name => $days) {
269 $this->renderer->doc .= '<th colspan="' . $days
59 protected $days; global() variable in dokuwiki\\plugin\\structgantt\\meta\\Gantt
[all...]
/plugin/relativetimehelper/
H A Dhelper.php69 $days = ($timediff % $this::SECONDS_PER_WEEK) / $this::SECONDS_PER_DAY;;
70 if ($days != 0) {
71 if ($days == 1) {
74 array_unshift($parts, sprintf($this->getLang('days'), $days));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
H A Darray.test4 {% for key, value in days %}
8 return ['days' => [
/plugin/structtasks/meta/
H A DTodayNotifier.php25 $days = $time_remaining[0] * 365 + $time_remaining[1] * 31 + $time_remaining[2];
26 if ($days == 0) {
H A DOverdueNotifier.php25 $days = $time_remaining[0] * 365 + $time_remaining[1] * 31 + $time_remaining[2];
26 if ($days < 0) {
H A DReminderNotifier.php48 $days = $time_remaining[0] * 365 + $time_remaining[1] * 31 + $time_remaining[2];
49 if (in_array($days, $this->days_before)) {
/plugin/davcard/vendor/sabre/vobject/lib/
H A DDateTimeParser.php118 $days = $matches['day'];
120 $days+=$matches['week']*7;
122 if ($days)
123 $duration.=$days . 'D';
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DDateTimeParser.php118 $days = $matches['day'];
120 $days+=$matches['week']*7;
122 if ($days)
123 $duration.=$days . 'D';
/plugin/davcal/vendor/sabre/vobject/lib/
H A DDateTimeParser.php118 $days = $matches['day'];
120 $days+=$matches['week']*7;
122 if ($days)
123 $duration.=$days . 'D';
/plugin/countdown/
H A Dsyntax.php73 $dt_days = $dt_diff->days * ($dt_diff->invert ? -1 : 1);
175 $days = ($endDate - $startDate) / 86400 + 1;
177 $no_full_weeks = floor($days / 7);
178 $no_remaining_days = fmod($days, 7);
/plugin/structtasks/
H A Dcli.php108 $days = '';
110 if ($c > 1) $days .= implode(
112 $days .= $reminder_days[$c - 1];
114 sprintf($this->getLang('msg_reminder_notifier'), $days)
/plugin/webdav/vendor/sabre/vobject/lib/
H A DDateTimeParser.php126 $days = $matches['day'];
129 $days += $matches['week'] * 7;
132 if ($days) {
133 $duration .= $days.'D';
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DDateTimeParser.php129 $days = $matches['day'];
132 $days += $matches['week'] * 7;
135 if ($days) {
136 $duration .= $days . 'D';
/plugin/timetrack/
H A Dhelper.php574 $days = $this->getConf('days_recent_project_active');
575 if($days < 1) $days = 1;
576 if($days > 200) $days = 200;
577 $interval = new DateInterval("P{$days}D");
1011 $days = $this->getConf('weekdays');
1012 if($days < 1) $days = 1;
1013 if($days > 7) $days = 7;
1018 $dto->modify("+$days days");
/plugin/jenkins/
H A Dsyntax.php174 $days = $x;
177 if ($days >= 1) {
178 $duration .= $days.'d ';
/plugin/davcal/syntax/
H A Dtable.php154 $days = intval(str_replace('today-', '', $from));
156 $from->sub(new \DateInterval('P'.$days.'D'));
160 $days = intval(str_replace('today+', '', $from));
162 $from->add(new \DateInterval('P'.$days.'D'));
/plugin/bliki/
H A Dsyntax.php122 $days = $this->read_dir_to_array($ID . '/' . $year . '/' . $month . '/', 'dir');
123 sort($days);
125 while (sizeof($recents) < $num && sizeof($days)) {
126 $day = array_pop($days);

12345678910>>...15