Home
last modified time | relevance | path

Searched refs:month (Results 26 – 50 of 349) sorted by relevance

12345678910>>...14

/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudAsset/
H A DDate.php29 public $month; variable in Google\\Service\\CloudAsset\\Date
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdMob/
H A DDate.php29 public $month; variable in Google\\Service\\AdMob\\Date
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Adsense/
H A DDate.php29 public $month; variable in Google\\Service\\Adsense\\Date
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/
H A DDate.php29 public $month; variable in Google\\Service\\PeopleService\\Date
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PolicySimulator/
H A DGoogleTypeDate.php29 public $month; variable in Google\\Service\\PolicySimulator\\GoogleTypeDate
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudMemorystoreforMemcached/
H A DDate.php29 public $month; variable in Google\\Service\\CloudMemorystoreforMemcached\\Date
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Fcmdata/
H A DGoogleTypeDate.php29 public $month; variable in Google\\Service\\Fcmdata\\GoogleTypeDate
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBillingBudget/
H A DGoogleTypeDate.php29 public $month; variable in Google\\Service\\CloudBillingBudget\\GoogleTypeDate
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ChromeManagement/
H A DGoogleTypeDate.php29 public $month; variable in Google\\Service\\ChromeManagement\\GoogleTypeDate
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/
H A DGoogleTypeDate.php29 public $month; variable in Google\\Service\\CloudRetail\\GoogleTypeDate
52 public function setMonth($month) argument
54 $this->month = $month;
61 return $this->month;
/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSEMONTH.php39 if($month = array_search($field, $this->monthToLongName()))
42 $startMonth = $month;
44 $endMonth = $month;
47 else if($month = array_search($field, $this->monthToShortName()))
50 $startMonth = $month;
52 $endMonth = $month;
/plugin/quickstats/scripts/
H A Dget_pages.php7 function qs_pages_search_i ($needle = null,$month) argument
10 $pages = unserialize(file_get_contents(QS_META . $month .'/pages.ser'));
25 function qs_process_pages ($page,$month) { argument
26 $file = QS_META . $month . '/page_users.ser';
29 $found = qs_pages_search_i($page,$month);
H A Dget_useragent.php5 function qs_useragent_search_ci ($needle = null, $month) argument
8 $misc_data_file = QS_META . $month . '/misc_data.ser';
32 foreach($months as $month) {
33 $qs_agents = array_merge($qs_agents,qs_useragent_search_ci ($search_term,$month));
/plugin/judge/helper/
H A Djdatetime.class.php121 … list($year, $month, $day) = array($obj->format('Y'), $obj->format('n'), $obj->format('j'));
122 list($jyear, $jmonth, $jday) = self::toJalali($year, $month, $day);
341 $month = (intval($month) == 0) ? self::date('m') : $month;
347 list($year, $month, $day) = self::toGregorian($year, $month, $day);
386 public static function checkdate($month, $day, $year, $jalali = null) argument
389 $month = (intval($month) == 0) ? self::date('n') : intval($month);
396 $epoch = self::mktime(0, 0, 0, $month, $day, $year);
398 if( self::date('Y-n-j', $epoch,false) == "$year-$month-$day" ) {
407 $ret = checkdate($month, $day, $year);
451 private static function getMonthNames($month, $shorten = false, $len = 3) argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DDateTime.php37 public $month; variable in Google\\Service\\ShoppingContent\\DateTime
102 public function setMonth($month) argument
104 $this->month = $month;
111 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/
H A DGoogleTypeDateTime.php37 public $month; variable in Google\\Service\\Document\\GoogleTypeDateTime
102 public function setMonth($month) argument
104 $this->month = $month;
111 return $this->month;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Playdeveloperreporting/
H A DGoogleTypeDateTime.php37 public $month; variable in Google\\Service\\Playdeveloperreporting\\GoogleTypeDateTime
102 public function setMonth($month) argument
104 $this->month = $month;
111 return $this->month;
/plugin/jsonrpc/
H A DIJR_Date.php10 var $month; variable in IJR_Date
25 $this->month = gmdate('m', $timestamp);
33 $this->month = substr($iso, 5, 2);
40 …return $this->year.'-'.$this->month.'-'.$this->day.'T'.$this->hour.':'.$this->minute.':'.$this->se…
46 … return gmmktime($this->hour, $this->minute, $this->second, $this->month, $this->day, $this->year);
/plugin/statdisplay/
H A Dsyntax.php96 list($month, $year) = array_pad(explode('_', strtolower($date)), 2, '');
99 $month = array_search($month, $months);
100 if (!$month) return '';
101 return sprintf("%d-%02d", $year, $month);
/plugin/gcalendar/inc/
H A Dgcal_main.php66 $month = $today["mon"];
69 …if(isset($options["month"])) $month = $options["month"] + $options["offset"] + $_SESSION["offset"];
75 if(isset($_REQUEST["month"])) $month = $_REQUEST["month"];
83 case "month" : $month += $options["offset"] ; break;
88 $reference_date = mktime(0, 0, 0, $month, $day, $year);
113 default : $start_date = mktime(0, 0, 0, $month, 1, $year);
/plugin/yearbox/services/pageNameStrategies/
H A DYearMonthCombinedNS.php8 public function getPageId($baseNS, $year, $month, $day, $name) argument
10 $pagename = ($name ? "$name-" : '') . "$year-$month-$day";
11 return "$baseNS:$year-$month:$pagename";
H A DYearMonthSeperatedNS.php8 public function getPageId($baseNS, $year, $month, $day, $name) argument
10 $pagename = ($name ? "$name-" : '') . "$year-$month-$day";
11 return "$baseNS:$year:$month:$pagename";
/plugin/publist/bib2tpl/
H A Dchangelog5 * Change e2mn method in helper.inc.php to use the month name in the
6 languge file as a pattern. This way, month sorting can be done correctly
7 when e.g. month names are in English but output language is Spanish, or
11 * Language files (en, de, es) updated to add month names alternatives
/plugin/publistf/bib2tpl/
H A Dchangelog5 * Change e2mn method in helper.inc.php to use the month name in the
6 languge file as a pattern. This way, month sorting can be done correctly
7 when e.g. month names are in English but output language is Spanish, or
11 * Language files (en, de, es) updated to add month names alternatives
/plugin/publistx/bib2tpl/
H A Dchangelog5 * Change e2mn method in helper.inc.php to use the month name in the
6 languge file as a pattern. This way, month sorting can be done correctly
7 when e.g. month names are in English but output language is Spanish, or
11 * Language files (en, de, es) updated to add month names alternatives

12345678910>>...14