public static function DateHelper::minutes

public static DateHelper::minutes($format = 'i', $required = FALSE, $increment = 1)

Constructs an array of minutes.

Parameters

string $format: (optional) A date format string that indicates the format to use for the minutes. Defaults to 'i'.

bool $required: (optional) If FALSE, the returned array will include a blank value. Defaults to FALSE.

int $increment: An integer value to increment the values. Defaults to 1.

Return value

array An array of minutes in the selected format.

File

core/lib/Drupal/Core/Datetime/DateHelper.php, line 384

Class

DateHelper
Defines Gregorian Calendar date values.

Namespace

Drupal\Core\Datetime

Code

public static function minutes($format = 'i', $required = FALSE, $increment = 1) {
  $minutes = array();
  // Ensure $increment has a value so we don't loop endlessly.
  if (empty($increment)) {
    $increment = 1;
  }
  for ($i = 0; $i < 60; $i += $increment) {
    $formatted = $format == 'i' ? DrupalDateTime::datePad($i) : $i;
    $minutes[$i] = $formatted;
  }
  $none = array('' => '');
  return !$required ? $none + $minutes : $minutes;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Datetime!DateHelper.php/function/DateHelper::minutes/8.1.x