Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DateHelper.php

function DateHelper::ampm

Constructs an array of AM and PM options.

Parameters

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

Return value

array An array of AM and PM options.

File

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

Class

DateHelper
Defines Gregorian Calendar date values.

Namespace

Drupal\Core\Datetime

Code

public static function ampm($required = FALSE) {
    $none = [
        '' => '',
    ];
    $ampm = [
        'am' => t('am', [], [
            'context' => 'ampm',
        ]),
        'pm' => t('pm', [], [
            'context' => 'ampm',
        ]),
    ];
    return !$required ? $none + $ampm : $ampm;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal