You are here

public function Micon::getPrefix in Micon 2.x

Same name and namespace in other branches
  1. 8 src/Entity/Micon.php \Drupal\micon\Entity\Micon::getPrefix()

Get unique IcoMoon package prefix.

Overrides MiconInterface::getPrefix

3 calls to Micon::getPrefix()
Micon::archiveExtract in src/Entity/Micon.php
Properly extract and store an IcoMoon zip file.
Micon::getIcons in src/Entity/Micon.php
Get Micon package icons with tag as key.
Micon::getName in src/Entity/Micon.php
Get unique IcoMoon package name.

File

src/Entity/Micon.php, line 144

Class

Micon
Defines the Micon entity.

Namespace

Drupal\micon\Entity

Code

public function getPrefix() {
  $info = $this
    ->getInfo();
  return $info['preferences'][$this
    ->type() . 'Pref']['prefix'];
}