aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/banner/info.php
diff options
context:
space:
mode:
authorDavid Siegfried <david.siegfried@uni-vechta.de>2022-10-27 07:27:02 +0000
committerDavid Siegfried <david.siegfried@uni-vechta.de>2022-10-27 07:27:02 +0000
commit0256cb7c7a213427f85b0b00d0527bd6a008d46a (patch)
tree36d3f512be313ecac2fe9db48fb516dafeb151a1 /app/views/admin/banner/info.php
parent77ecfb5f5fb36290da58b3dd20c282db6719f5d9 (diff)
add docblocks, closes #1653
Closes #1653 Merge request studip/studip!1064
Diffstat (limited to 'app/views/admin/banner/info.php')
-rw-r--r--app/views/admin/banner/info.php16
1 files changed, 12 insertions, 4 deletions
diff --git a/app/views/admin/banner/info.php b/app/views/admin/banner/info.php
index 74e8c73..be5df97 100644
--- a/app/views/admin/banner/info.php
+++ b/app/views/admin/banner/info.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var Admin_BannerController $controller
+ * @var array $banner
+ * @var array $target_types
+ * @var array $priorities
+ * @var array $assigned
+ */
+?>
<table class="default">
<tbody>
<tr>
@@ -14,7 +23,7 @@
<td>
<input type="text" readonly
value="<?= htmlReady($banner['description']) ?>"
- size="40" maxlen="254">
+ size="40" maxlength="254">
</td>
</tr>
<tr>
@@ -22,7 +31,7 @@
<td>
<input type="text" readonly
value="<?= htmlReady($banner['alttext']) ?>"
- size="40" maxlen="254">
+ size="40" maxlength="254">
</td>
</tr>
<tr>
@@ -42,7 +51,7 @@
<td>
<input type="text" readonly
value="<?= htmlReady($banner['target']) ?>"
- size="40" maxlen="254" disabled>
+ size="40" maxlength="254" disabled>
</td>
</tr>
<tr>
@@ -86,4 +95,3 @@
</tr>
</tbody>
</table>
-