aboutsummaryrefslogtreecommitdiff
path: root/app/view
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2020-01-11 19:40:13 +0100
committervincent-peugnet <v.peugnet@free.fr>2020-01-11 19:40:13 +0100
commit19b603a228a63ae91d45a16dc104f795ea0cd244 (patch)
tree9d99978aefc76afc5403b2263c682d03f60c0ca3 /app/view
parentb7c2d553face9ccdc5f96bcaaa181510c4328530 (diff)
downloadwcms-19b603a228a63ae91d45a16dc104f795ea0cd244.tar.gz
wcms-19b603a228a63ae91d45a16dc104f795ea0cd244.zip
fix editor delete add edit rights
Diffstat (limited to 'app/view')
-rw-r--r--app/view/templates/home.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php
index f95c60f..d3d9a99 100644
--- a/app/view/templates/home.php
+++ b/app/view/templates/home.php
@@ -87,9 +87,9 @@
<tr>
<?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><?php if($user->issupereditor() || in_array($user->id(), $item->authors())) { ?><a href="<?= $this->upage('pageedit', $item->id()) ?>"><img src="<?= Wcms\Model::iconpath() ?>edit.png" class="icon"></a><?php } ?></td>
<td><a href="<?= $this->upage('pageread/', $item->id()) ?>" target="_blank"><img src="<?= Wcms\Model::iconpath() ?>read.png" class="icon"></a></td>
- <td class="delete"><a href="<?= $this->upage('pagedelete', $item->id()) ?>">✖</a></td>
+ <td class="delete"><?php if($user->issupereditor() || $item->authors() === [$user->id()]) { ?><a href="<?= $this->upage('pagedelete', $item->id()) ?>">✖</a><?php } ?></td>
<?php if ($user->issupereditor()) { ?>
<td class="hidephone"><a href="<?= $this->upage('pagedownload', $item->id()) ?>" download><img src="<?= Wcms\Model::iconpath() ?>download.png" class="icon"></a></td>
<?php }