<?phpnamespace PostMapPlugin;use Codeages\PluginBundle\System\PluginBase;use PostMapPlugin\Biz\Importer\PostImporter;class PostMapPlugin extends PluginBase{ public function boot() { parent::boot(); $biz = $this->container->get('biz'); $biz['importer.post'] = function ($biz) { return new PostImporter($biz); }; } public function getEnabledExtensions() { return array('DataTag', 'StatusTemplate', 'DataDict', 'NotificationTemplate'); }}