Skip to content
Snippets Groups Projects
Commit cf71061d authored by Andreas Gohr's avatar Andreas Gohr
Browse files

added two more missing action icons

parent 92ca7c1e
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@ namespace dokuwiki\Menu\Item;
/**
* Class Back
*
* @fixme where is this used?
* @fixme missing SVG
* Navigates back up one namepspace. This is currently not used in any menu. Templates
* would need to add this item manually.
*/
class Back extends AbstractItem {
......@@ -23,6 +23,7 @@ class Back extends AbstractItem {
$this->id = $parent;
$this->params = array('do' => '');
$this->accesskey = 'b';
$this->svg = DOKU_INC . 'lib/images/menu/12-back_arrow-left.svg';
}
}
......@@ -17,6 +17,8 @@ class Resendpwd extends AbstractItem {
if($INPUT->server->str('REMOTE_USER')) {
throw new \RuntimeException("no resendpwd when already logged in");
}
$this->svg = DOKU_INC . 'lib/images/menu/lock-reset.svg';
}
}
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12.63 2c5.53 0 10.01 4.5 10.01 10s-4.48 10-10.01 10c-3.51 0-6.58-1.82-8.37-4.57l1.58-1.25C7.25 18.47 9.76 20 12.64 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8C8.56 4 5.2 7.06 4.71 11h2.76l-3.74 3.73L0 11h2.69c.5-5.05 4.76-9 9.94-9m2.96 8.24c.5.01.91.41.91.92v4.61c0 .5-.41.92-.92.92h-5.53c-.51 0-.92-.42-.92-.92v-4.61c0-.51.41-.91.91-.92V9.23c0-1.53 1.25-2.77 2.77-2.77 1.53 0 2.78 1.24 2.78 2.77v1.01m-2.78-2.38c-.75 0-1.37.61-1.37 1.37v1.01h2.75V9.23c0-.76-.62-1.37-1.38-1.37z"/></svg>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment