You are here

public function UtilityBase::getName in SimpleAds 8

Get ad type name by ID.

File

src/UtilityBase.php, line 29

Class

UtilityBase
Utility ads utility class.

Namespace

Drupal\simpleads

Code

public function getName($id) {
  $types = $this
    ->getTypes();
  if (!empty($types[$id])) {
    return $types[$id];
  }
}