'Thomas Mudrunka', 'email' => 'harvie--email-cz', 'date' => '2010-02-21', 'name' => 'SVG-Edit Plugin (do=export_svg handler)', 'desc' => 'Adds handler to have clean way for exporting SVGs', 'url' => 'http://www.dokuwiki.org/plugin:svgedit' ); } function register(Doku_Event_Handler $controller) { $controller->register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, '_hookdo'); } function _hookdo(Doku_Event $event, $param) { global $ID; if($event->data === 'export_svg' && auth_quickaclcheck($ID) >= AUTH_READ) { header('Content-type: image/svg+xml'); die(rawWiki($ID)); } } }