diff options
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/templates/home.php | 4 | ||||
-rw-r--r-- | app/view/templates/homemenu.php | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index a60a5cc..f95c60f 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -36,7 +36,7 @@ <table id="home2table"> <thead> <tr> - <th id="checkall" class="hidephone">x</th> + <?php if($user->issupereditor()) { ?><th id="checkall" class="hidephone">x</th> <?php } ?> <th><a href="<?= $opt->getadress('id') ?>">id</a></th> <th>edit</th> <th>see</th> @@ -85,7 +85,7 @@ <tbody> <?php foreach ($table2 as $item) { ?> <tr> - <td class="hidephone"><input type="checkbox" name="pagesid[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>" form="multiedit"></td> + <?php if($user->issupereditor()) { ?><td class="hidephone"><input type="checkbox" name="pagesid[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>" form="multiedit"></td><?php } ?> <td><label title="<?= $item->title() ?>" for="id_<?= $item->id() ?>"><?= $item->id() ?></label></td> <td><a href="<?= $this->upage('pageedit', $item->id()) ?>"><img src="<?= Wcms\Model::iconpath() ?>edit.png" class="icon"></a></td> <td><a href="<?= $this->upage('pageread/', $item->id()) ?>" target="_blank"><img src="<?= Wcms\Model::iconpath() ?>read.png" class="icon"></a></td> diff --git a/app/view/templates/homemenu.php b/app/view/templates/homemenu.php index ade9bac..21f9af8 100644 --- a/app/view/templates/homemenu.php +++ b/app/view/templates/homemenu.php @@ -1,7 +1,7 @@ <aside class="home"> - +<?php if($user->issupereditor()) { ?> <details class="hidephone" id="json"> <summary>File</summary> <div class="submenu"> @@ -45,6 +45,12 @@ </form> <h2>Edit Meta infos</h2> <form action="<?= $this->url('multiedit') ?>" method="post" id="multiedit"> + <input type="text" name="datas[title]" id="title"> + <label for="title">title</label> + </br> + <input type="text" name="datas[description]" id="description"> + <label for="description">description</label> + </br> <strong>Tag</strong> </br> <input type="hidden" name="reset[tag]" value="0"> @@ -142,6 +148,7 @@ </form> </div> </details> + <?php } ?> |