You are here

public static function SchemaTypeBase::removePrefix in Schema.org Metatag 8

Clean up a list of labels by removing leading spaces and dashes.

File

src/Plugin/metatag/Tag/SchemaTypeBase.php, line 68

Class

SchemaTypeBase
Provides a plugin for the 'schema_type_base' meta tag.

Namespace

Drupal\schema_metatag\Plugin\metatag\Tag

Code

public static function removePrefix($item) {
  return str_replace([
    '-',
    ' ',
  ], '', $item);
}