public function read() { $this->listeners =
[];
if ($this->storage->listeners !== null
) { foreach ($this->storage->listeners
as $entry) { if (!
$entry instanceof Enlight_Config
) { continue;
} $this->listeners
[] =
new Enlight_Event_Handler_Plugin( $entry->name,
$this->namespace,
$entry->plugin,
$entry->listener,
$entry->position
);
} } return $this;
}