FontWeight.php

Namespace

Drupal\Core\Theme\Plugin\DesignTokenValue

File

core/lib/Drupal/Core/Theme/Plugin/DesignTokenValue/FontWeight.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Core\Theme\Plugin\DesignTokenValue;

use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Theme\DesignToken\Attribute\DesignTokenValue;
use Drupal\Core\Theme\DesignToken\DesignTokenValuePluginBase;
use Drupal\Core\Theme\DesignToken\Enum\FontWeightAlias;

/**
 * Font weight design token value.
 */
class FontWeight extends DesignTokenValuePluginBase {
  
  /**
   * The font weight value.
   */
  protected int $value;
  
  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() : array {
    return [
      // 0 is not an authorized value, this forces to set an authorized value.
'value' => 0,
    ] + parent::defaultConfiguration();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setConfiguration(array $configuration) : static {
    parent::setConfiguration($configuration);
    if ($this->configuration['value'] instanceof FontWeightAlias) {
      $this->value = $this->configuration['value']
        ->value();
      return $this;
    }
    if (is_string($this->configuration['value'])) {
      $this->value = FontWeightAlias::from($this->configuration['value'])
        ->value();
      return $this;
    }
    $this->value = (int) $this->configuration['value'];
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function toDtcg() : mixed {
    return $this->value;
  }
  
  /**
   * {@inheritdoc}
   */
  public function toCss() : string {
    return (string) $this->value;
  }

}

Classes

Title Deprecated Summary
FontWeight Font weight design token value.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.