about summary refs log tree commit diff stats
path: root/wiki/inc/Menu/Item/Recent.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Menu/Item/Recent.php')
-rw-r--r--wiki/inc/Menu/Item/Recent.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/wiki/inc/Menu/Item/Recent.php b/wiki/inc/Menu/Item/Recent.php
new file mode 100644
index 0000000..ff90ce6
--- /dev/null
+++ b/wiki/inc/Menu/Item/Recent.php
@@ -0,0 +1,20 @@
+<?php
+
+namespace dokuwiki\Menu\Item;
+
+/**
+ * Class Recent
+ *
+ * Show the site wide recent changes
+ */
+class Recent extends AbstractItem {
+
+    /** @inheritdoc */
+    public function __construct() {
+        parent::__construct();
+
+        $this->accesskey = 'r';
+        $this->svg = DOKU_INC . 'lib/images/menu/calendar-clock.svg';
+    }
+
+}