aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2020-03-26 19:24:20 +0100
committervincent-peugnet <v.peugnet@free.fr>2020-03-26 19:24:20 +0100
commit9ce7ecebaf118546bf3a3cbad7ce448d490ade15 (patch)
tree7187365d3d7eed3670d403e30f22dae2e150b7d4 /app/view/templates
parent5019671cf2bba2202c0024f3bd309fe674251226 (diff)
downloadwcms-9ce7ecebaf118546bf3a3cbad7ce448d490ade15.tar.gz
wcms-9ce7ecebaf118546bf3a3cbad7ce448d490ade15.zip
media add user and permissions data
Diffstat (limited to 'app/view/templates')
-rw-r--r--app/view/templates/media.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/view/templates/media.php b/app/view/templates/media.php
index 50fc0d6..9f56116 100644
--- a/app/view/templates/media.php
+++ b/app/view/templates/media.php
@@ -80,9 +80,9 @@ $this->layout('layout', ['title' => 'media', 'stylesheets' => [$css . 'home.css'
<th><a href="<?= $mediaopt->getsortbyadress('type') ?>">type</a></th>
<th><a href="<?= $mediaopt->getsortbyadress('size') ?>">size</a></th>
<th><a href="<?= $mediaopt->getsortbyadress('date') ?>">date</a></th>
- <th>width</th>
- <th>height</th>
- <th>lengh</th>
+ <th>user</th>
+ <th>perms</th>
+ <th>surface</th>
<th>code</th>
</tr>
@@ -96,9 +96,9 @@ $this->layout('layout', ['title' => 'media', 'stylesheets' => [$css . 'home.css'
<td class="nowrap"><a href="<?= $media->getfullpath() ?>" target="_blank"><?= $media->type() == 'image' ? '<span class="thumbnail">' . $media->getsymbol() . '<img src="' . $media->getfullpath() . '"></span>' : $media->getsymbol() ?></a></td>
<td class="nowrap"><?= $media->size('hr') ?></td>
<td class="nowrap" title="<?= $media->date('dmy') ?> <?= $media->date('ptime') ?>"><?= $media->date('hrdi') ?></td>
- <td><?= $media->width() ?></td>
- <td><?= $media->height() ?></td>
- <td><?= $media->length() ?></td>
+ <td><?= $media->uid('name') ?></td>
+ <td><code><?= $media->permissions() ?></code></td>
+ <td><?= $media->surface() ?></td>
<td class="code"><code><?= $media->getcode() ?></code></td>
</tr>
<?php