はじまりの大地

このコミットが含まれているのは:
miteruzo
2024-07-08 03:32:47 +09:00
コミット c616a96f53
7749個のファイルの変更478270行の追加0行の削除
+24
ファイルの表示
@@ -0,0 +1,24 @@
<?php
namespace dokuwiki\Menu\Item;
/**
* Class ImgBackto
*
* Links back to the originating page from a detail image view
*/
class ImgBackto extends AbstractItem {
/** @inheritdoc */
public function __construct() {
global $ID;
parent::__construct();
$this->svg = DOKU_INC_COMPAT . 'lib/images/menu/12-back_arrow-left.svg';
$this->type = 'img_backto';
$this->params = array();
$this->accesskey = 'b';
$this->replacement = $ID;
}
}