protected static function GeneralNumberFormatter::getNegativeStyles in Formatter Suite 8
Returns an array of negative styles.
Return value
string[] Returns an associative array with internal names as keys and human-readable translated names as values.
2 calls to GeneralNumberFormatter::getNegativeStyles()
- GeneralNumberFormatter::sanitizeSettings in src/
Plugin/ Field/ FieldFormatter/ GeneralNumberFormatter.php  - Sanitize settings to insure that they are safe and valid.
 - GeneralNumberFormatter::settingsForm in src/
Plugin/ Field/ FieldFormatter/ GeneralNumberFormatter.php  - Returns a form to configure settings for the formatter.
 
File
- src/
Plugin/ Field/ FieldFormatter/ GeneralNumberFormatter.php, line 95  
Class
- GeneralNumberFormatter
 - Format a number field with a variety of notation styles and parameters.
 
Namespace
Drupal\formatter_suite\Plugin\Field\FieldFormatterCode
protected static function getNegativeStyles() {
  return [
    'minus' => t('Minus sign'),
    'red' => t('Red'),
    'parenthesis' => t('Parenthesis'),
    'redparenthesis' => t('Red parenthesis'),
  ];
}