/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/ |
H A D | ReturnPolicyOnlinePolicy.php | 25 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 D | script.js | 35 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 D | date_interval.test | 7 {{ 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 D | date_default_format_interval.test | 7 {{ 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 D | notification.php | 211 $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 D | statistics.php | 58 $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 D | syntax.php | 163 $days = $interval->format('%d'); 178 if($days > 1) 179 $result .= "$days days "; 180 elseif($days == 1) 181 $result .= "$days day ";
|
/plugin/badbehaviour/ |
H A D | admin.php | 60 $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 D | Gantt.php | 36 /** @var \DateTime[] all the days */ 37 protected $days; 39 /** @var int number of days */ 113 * Figure out the minimum and maximum dates and number of days inbetween 115 * @throws StructException when the range is not at least two days 137 $daynum = (new \DateTime($min))->diff(new \DateTime($max))->days; 145 'header' => 'j', // days 194 $this->days = $this->listDays($min, $max); 255 foreach ($headers as $name => $days) { 256 $this->renderer->doc .= '<th colspan="' . $days 59 protected $days; global() variable in dokuwiki\\plugin\\structgantt\\meta\\Gantt [all...] |
/plugin/relativetimehelper/ |
H A D | helper.php | 69 $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 D | array.test | 4 {% for key, value in days %} 8 return ['days' => [
|
/plugin/structtasks/meta/ |
H A D | TodayNotifier.php | 25 $days = $time_remaining[0] * 365 + $time_remaining[1] * 31 + $time_remaining[2]; 26 if ($days == 0) {
|
H A D | OverdueNotifier.php | 25 $days = $time_remaining[0] * 365 + $time_remaining[1] * 31 + $time_remaining[2]; 26 if ($days < 0) {
|
H A D | ReminderNotifier.php | 48 $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 D | DateTimeParser.php | 118 $days = $matches['day']; 120 $days+=$matches['week']*7; 122 if ($days) 123 $duration.=$days . 'D';
|
/plugin/webdavclient/vendor/sabre/vobject/lib/ |
H A D | DateTimeParser.php | 118 $days = $matches['day']; 120 $days+=$matches['week']*7; 122 if ($days) 123 $duration.=$days . 'D';
|
/plugin/davcal/vendor/sabre/vobject/lib/ |
H A D | DateTimeParser.php | 118 $days = $matches['day']; 120 $days+=$matches['week']*7; 122 if ($days) 123 $duration.=$days . 'D';
|
/plugin/countdown/ |
H A D | syntax.php | 73 $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 D | cli.php | 108 $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 D | DateTimeParser.php | 126 $days = $matches['day']; 129 $days += $matches['week'] * 7; 132 if ($days) { 133 $duration .= $days.'D';
|
/plugin/icalevents/vendor/sabre/vobject/lib/ |
H A D | DateTimeParser.php | 129 $days = $matches['day']; 132 $days += $matches['week'] * 7; 135 if ($days) { 136 $duration .= $days . 'D';
|
/plugin/timetrack/ |
H A D | helper.php | 574 $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 D | syntax.php | 174 $days = $x; 177 if ($days >= 1) { 178 $duration .= $days.'d ';
|
/plugin/davcal/syntax/ |
H A D | table.php | 154 $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 D | syntax.php | 122 $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);
|