GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Datetime/Entity/ |
Upload File : |
<?php namespace Drupal\Core\Datetime\Entity; use Drupal\Core\Config\Entity\ConfigEntityBase; use Drupal\Core\Config\Entity\ConfigEntityInterface; use Drupal\Core\Datetime\DateFormatInterface; /** * Defines the Date Format configuration entity class. * * @ConfigEntityType( * id = "date_format", * label = @Translation("Date format"), * handlers = { * "access" = "Drupal\system\DateFormatAccessControlHandler", * }, * entity_keys = { * "id" = "id", * "label" = "label" * }, * admin_permission = "administer site configuration", * list_cache_tags = { "rendered" }, * config_export = { * "id", * "label", * "locked", * "pattern", * } * ) */ class DateFormat extends ConfigEntityBase implements DateFormatInterface { /** * The date format machine name. * * @var string */ protected $id; /** * The human-readable name of the date format entity. * * @var string */ protected $label; /** * The date format pattern. * * @var array */ protected $pattern; /** * The locked status of this date format. * * @var bool */ protected $locked = FALSE; /** * {@inheritdoc} */ public function getPattern() { return $this->pattern; } /** * {@inheritdoc} */ public function setPattern($pattern) { $this->pattern = $pattern; return $this; } /** * {@inheritdoc} */ public function isLocked() { return (bool) $this->locked; } /** * {@inheritdoc} */ public static function sort(ConfigEntityInterface $a, ConfigEntityInterface $b) { if ($a->isLocked() == $b->isLocked()) { $a_label = $a->label(); $b_label = $b->label(); return strnatcasecmp($a_label, $b_label); } return $a->isLocked() ? 1 : -1; } /** * {@inheritdoc} */ public function getCacheTagsToInvalidate() { return ['rendered']; } }