/**
* compose the parameters for a date select object
*
- * @param $type the type of date
- * @param $format date format ( QF format)
+ * @param string|NULL $type the type of date
+ * @param string|NULL $format date format ( QF format)
*
* @return array the date array
* @static
* @static
*/
function getHours() {
+ $hours = array();
for ($i = 0; $i <= 6; $i++) {
$hours[$i] = $i;
}
* @static
*/
function getMinutes() {
+ $minutes = array();
for ($i = 0; $i < 60; $i = $i + 15) {
$minutes[$i] = $i;
}
'{event.end_date}' => ts('Event End Date'),
'{event.event_type}' => ts('Event Type'),
'{event.summary}' => ts('Event Summary'),
- '{event.description}' => ts('Event Description'),
'{event.contact_email}' => ts('Event Contact Email'),
'{event.contact_phone}' => ts('Event Contact Phone'),
- '{event.location}' => ts('Event Location'),
'{event.description}' => ts('Event Description'),
'{event.location}' => ts('Event Location'),
'{event.fee_amount}' => ts('Event Fees'),
* @static
*/
public static function getNumericOptions($start = 0, $end = 10) {
+ $numericOptions = array();
for ($i = $start; $i <= $end; $i++) {
$numericOptions[$i] = $i;
}
);
}
- return $jobFrequency;
+ return $wordReplacementMatchType;
}
/**