'Image Cache', 'description' => 'Saves external images locally and presents them via a twig filter.', 'author' => 'Jason Williams', 'icon' => 'oc-icon-cloud' ]; } public function registerMarkupTags() { return [ 'filters' => [ 'imgcache' => function($imgurl) { $image = new Image($imgurl); return $image; } ] ]; } }