diff options
Diffstat (limited to 'inc/Menu/Item/Back.php')
-rw-r--r-- | inc/Menu/Item/Back.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/inc/Menu/Item/Back.php b/inc/Menu/Item/Back.php index a7cc1d976..6c67492c4 100644 --- a/inc/Menu/Item/Back.php +++ b/inc/Menu/Item/Back.php @@ -8,22 +8,22 @@ namespace dokuwiki\Menu\Item; * 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 { - +class Back extends AbstractItem +{ /** @inheritdoc */ - public function __construct() { + public function __construct() + { global $ID; parent::__construct(); $parent = tpl_getparent($ID); - if(!$parent) { + if (!$parent) { throw new \RuntimeException("No parent for back action"); } $this->id = $parent; - $this->params = array('do' => ''); + $this->params = ['do' => '']; $this->accesskey = 'b'; $this->svg = DOKU_INC . 'lib/images/menu/12-back_arrow-left.svg'; } - } |