diff --git a/app/controllers/admin/specification.php b/app/controllers/admin/specification.php
index 193a2a9f4912ffc57c4535b58752bb76bd57a5df..977ec1830f587d3e0e176c4d91d1e110df92ae67 100644
--- a/app/controllers/admin/specification.php
+++ b/app/controllers/admin/specification.php
@@ -47,7 +47,7 @@ class Admin_SpecificationController extends AuthenticatedController
     /**
      * Edit or create a rule
      *
-     * @param md5 $edit_id
+     * @param string $edit_id
      */
     public function edit_action($id = null)
     {
@@ -108,7 +108,7 @@ class Admin_SpecificationController extends AuthenticatedController
     /**
      * Delete a rule, using a modal dialog
      *
-     * @param md5 $rule_id
+     * @param string $rule_id
      */
     public function delete_action($rule_id)
     {
diff --git a/app/views/admin/additional/index.php b/app/views/admin/additional/index.php
index f906f44703c47dd4779582d6ee5a493fc58ca47c..f61b7e0e0365327405403a92dbb48481cdfca570 100644
--- a/app/views/admin/additional/index.php
+++ b/app/views/admin/additional/index.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Course $course
+ * @var AuxLockRule[] $list
+ * @var int $count
+ * @var array $config
+ */
+?>
 <? if ($list): ?>
     <form class='default' method='post'>
         <fieldset>
@@ -34,5 +42,5 @@
         </footer>
     </form>
 <? else: ?>
-    <? _('Keine Zusatzangaben vorhanden') ?>
+    <?= _('Keine Zusatzangaben vorhanden') ?>
 <? endif; ?>
diff --git a/app/views/admin/api/config.php b/app/views/admin/api/config.php
index 426db12cddee3cc1865a348f480a3525aafa5228..83d2ae540dec182d62231aae9fda2c061ca6a6c7 100644
--- a/app/views/admin/api/config.php
+++ b/app/views/admin/api/config.php
@@ -1,4 +1,10 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var Admin_ApiController $controller
+ * @var array $config
+ */
+use Studip\Button, Studip\LinkButton;
+?>
 
 <form class="default" action="<?= $controller->url_for('admin/api/config') ?>" method="post">
     <fieldset>
diff --git a/app/views/admin/api/edit.php b/app/views/admin/api/edit.php
index 65af5e9a582de13847b3b8789c31f56a79fc13dc..f1c7e03f0067fb90ce28e2a6fcad785effc2c1ce 100644
--- a/app/views/admin/api/edit.php
+++ b/app/views/admin/api/edit.php
@@ -1,4 +1,11 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var Admin_ApiController $controller
+ * @var RESTAPI\Consumer\Base $consumer
+ * @var array $types
+ */
+use Studip\Button, Studip\LinkButton;
+?>
 
 <? if ($consumer->id): ?>
     <h1>
diff --git a/app/views/admin/api/index.php b/app/views/admin/api/index.php
index 8a79dca512f38a2f7fd45185b4b1d23c7dfe2168..87dff7e5b9c2b08076785d16fc82c7060005d568 100644
--- a/app/views/admin/api/index.php
+++ b/app/views/admin/api/index.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_ApiController $controller
+ * @var RESTAPI\Consumer\Base[] $consumers
+ * @var array $types
+ */
+?>
 <? if (!empty($consumers)): ?>
 <form action="#" method="post" class="default">
 <table class="default">
diff --git a/app/views/admin/api/permissions.php b/app/views/admin/api/permissions.php
index 07441d69d5f805a5ec9078d1bb83a822bd77ef02..9eb48e36e1fb94cabb754888b6de26a6e78b47b4 100644
--- a/app/views/admin/api/permissions.php
+++ b/app/views/admin/api/permissions.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var Admin_ApiController $controller
+ * @var RESTAPI\ConsumerPermissions $permissions
+ * @var string $consumer_id
+ * @var array $routes
+ * @var bool $global
+ */
+?>
 <form action="<?= $controller->url_for('admin/api/permissions', $consumer_id) ?>" method="post" class="default">
 <table class="default">
     <thead>
diff --git a/app/views/admin/autoinsert/_search.php b/app/views/admin/autoinsert/_search.php
index c457d7466b0f8d049b1eb58181745ab4e886febc..3aec17b6f4d2fc731c04f1935d8b9d70ba7d0632 100644
--- a/app/views/admin/autoinsert/_search.php
+++ b/app/views/admin/autoinsert/_search.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var string $sem_select
+ * @var string $sem_search
+ */
+?>
 <fieldset>
     <legend>
         <?= _('Suche nach Veranstaltungen')?>
diff --git a/app/views/admin/autoinsert/_status.php b/app/views/admin/autoinsert/_status.php
index 22b4001aa3d2f7615bce8e59d5fa978b15afef18..7a9be60e5a3a9e0f08257a56dbf9632cfce159d3 100644
--- a/app/views/admin/autoinsert/_status.php
+++ b/app/views/admin/autoinsert/_status.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_AutoinsertController $controller
+ * @var array $domains
+ * @var array $auto_sems
+ * @var string $status
+ */
+?>
 <td>
     <? foreach ($domains as $domain) : ?>
         <div>
diff --git a/app/views/admin/autoinsert/index.php b/app/views/admin/autoinsert/index.php
index 6f863c551f0e8f1c078aa32383713a0f5aeb32e8..f69bc173ccd9af28ab687c7a323bce8c51d4a3ec 100644
--- a/app/views/admin/autoinsert/index.php
+++ b/app/views/admin/autoinsert/index.php
@@ -1,7 +1,9 @@
-<?
-# Lifter010: TODO
-use Studip\Button, Studip\LinkButton;
-
+<?php
+/**
+ * @var Admin_AutoinsertController $controller
+ * @var array $seminar_search
+ * @var array $userdomains
+ */
 ?>
 <? if (isset($flash['delete'])): ?>
     <?= (string)QuestionBox::create(
diff --git a/app/views/admin/autoinsert/manual.php b/app/views/admin/autoinsert/manual.php
index e081a10c7c5a711022ed84a5f8c3ebc3ef0626d4..c06454830a8ca6a8cd4fa46295b8cc9d3e568413 100644
--- a/app/views/admin/autoinsert/manual.php
+++ b/app/views/admin/autoinsert/manual.php
@@ -1,3 +1,17 @@
+<?php
+/**
+ * @var Admin_AutoinsertController $controller
+ * @var string $sem_search
+ * @var string $sem_select
+ * @var array $seminar_search
+ * @var array $filtertype
+ * @var string $sem_id
+ * @var array $available_filtertypes
+ * @var array $values
+ * @var array $filter
+ */
+?>
+
 <style type="text/css">
     .filter_selection select {
         width: 100%;
@@ -14,7 +28,7 @@
 </form>
 
 
-<? if ($seminar_search > 0 && $sem_search && $sem_select): ?>
+<? if ((is_array($seminar_search) && count($seminar_search) > 0) && $sem_search && $sem_select): ?>
     <form class="default" action="<?= $controller->manual() ?>" method="post">
         <?= CSRFProtection::tokenTag() ?>
         <input type="hidden" name="sem_search" value="<?= htmlReady($sem_search) ?>">
diff --git a/app/views/admin/banner/edit.php b/app/views/admin/banner/edit.php
index 0c0108259bf4708912a48c89b6bb0783e9ccf21b..9bf48f5ce3e3f9725d4e3cd13845b6a0d409986a 100644
--- a/app/views/admin/banner/edit.php
+++ b/app/views/admin/banner/edit.php
@@ -1,4 +1,17 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var Admin_BannerController $controller
+ * @var Banner $banner
+ * @var array $target_types
+ * @var Course $seminar
+ * @var Institute $institut
+ * @var User $user
+ * @var array $priorities
+ * @var array $assigned
+ * @var array $rolesStats
+ * @var Role $roles
+ */
+?>
 <form action="<?= $controller->url_for('admin/banner/edit', $banner->id) ?>" method="post" enctype="multipart/form-data" class="default">
     <?= CSRFProtection::tokenTag() ?>
 
@@ -20,13 +33,13 @@
 
         <label>
             <?= _('Beschreibung:') ?>
-            <input type="text" id="description" name="description" value="<?= htmlReady($banner['description']) ?>" size="40" maxlen="254">
+            <input type="text" id="description" name="description" value="<?= htmlReady($banner['description']) ?>" size="40" maxlength="254">
         </label>
 
         <label>
             <?= _('Alternativtext:') ?>
 
-            <input type="text" id="alttext" name="alttext" value="<?= htmlReady($banner['alttext']) ?>" size="40" maxlen="254">
+            <input type="text" id="alttext" name="alttext" value="<?= htmlReady($banner['alttext']) ?>" size="40" maxlength="254">
         </label>
 
         <label>
@@ -147,4 +160,4 @@
             }).change();
         });
     </script>
-<? endif; ?>
\ No newline at end of file
+<? endif; ?>
diff --git a/app/views/admin/banner/index.php b/app/views/admin/banner/index.php
index 9c3fb27fb88e3ac4e07a575350c02b88544a7227..11f9d8e3a1804758f831ae4f0917e4aba21f2f1a 100644
--- a/app/views/admin/banner/index.php
+++ b/app/views/admin/banner/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_BannerController $controller
+ * @var Banner[] $banners
+ */
+?>
 <? if (isset($flash['delete'])): ?>
     <?= QuestionBox::create(
         _('Wollen Sie das Banner wirklich löschen?'),
@@ -22,6 +28,10 @@
     </thead>
     <tbody>
     <? foreach ($banners as $banner): ?>
+        <?
+            $object_name_sem = get_object_name($banner->target, 'sem');
+            $object_name_inst = get_object_name($banner->target, 'inst');
+        ?>
         <tr id="banner-<?= htmlReady($banner->id) ?>">
             <td style="text-align: center;">
                 <?= $banner->toImg(['style' => 'max-width: 80px']) ?>
@@ -30,9 +40,9 @@
             <td><?= htmlReady($banner->target_type) ?></td>
             <td>
             <? if ($banner['target_type'] === 'seminar'): ?>
-                <?= mila(reset(get_object_name($banner->target, 'sem')), 30) ?>
+                <?= mila(reset($object_name_sem), 30) ?>
             <? elseif ($banner['target_type'] === 'inst') :?>
-                <?= mila(reset(get_object_name($banner->target, 'inst')), 30) ?>
+                <?= mila(reset($object_name_inst), 30) ?>
             <? else: ?>
                 <?= htmlReady($banner->target) ?>
             <? endif; ?>
diff --git a/app/views/admin/banner/info.php b/app/views/admin/banner/info.php
index 74e8c730337548f9585373cadbe15d7e1b79efaa..be5df975fe660b89b8bc3d57c1a8581750d4f536 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>
-
diff --git a/app/views/admin/cache/_stats_entry.php b/app/views/admin/cache/_stats_entry.php
index 0c850747ed94a62b83b785dce266f723387a55ed..2c8b940a1030e15aecda41733f277ec048cfd82b 100644
--- a/app/views/admin/cache/_stats_entry.php
+++ b/app/views/admin/cache/_stats_entry.php
@@ -1,4 +1,8 @@
-<? if (is_array($entry)) : ?>
+<?php
+/**
+ * @var array $entry
+ */
+?><? if (is_array($entry)) : ?>
     <dl class="default">
         <? foreach ($entry as $index => $data) : ?>
             <dt><?= htmlReady($index) ?></dt>
diff --git a/app/views/admin/cache/settings.php b/app/views/admin/cache/settings.php
index ad1e54439cfdfd2f128e1f4ba9886ed02fc29136..cf022d4d93086a331c18d2193d878ca15f5cf49e 100644
--- a/app/views/admin/cache/settings.php
+++ b/app/views/admin/cache/settings.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var boolean $enabled
+ * @var array $types
+ * @var array $config
+ * @var string $cache
+ */
+?>
 <? if ($enabled) : ?>
     <div id="cache-admin-container">
         <cache-administration :cache-types='<?= htmlReady(json_encode($types)) ?>' current-cache="<?= htmlReady($cache) ?>"
diff --git a/app/views/admin/cache/stats.php b/app/views/admin/cache/stats.php
index 9de9bafb3e978249556ea2becc9627279f582e0c..c01a8e631f6221b9c47047bbd3a6b7f5068fedf8 100644
--- a/app/views/admin/cache/stats.php
+++ b/app/views/admin/cache/stats.php
@@ -1,3 +1,8 @@
+<?php
+/**
+* @var array $stats
+ */
+?>
 <section class="contentbox">
     <header>
         <h1><?= _('Cache-Statistiken') ?></h1>
diff --git a/app/views/admin/configuration/configuration.php b/app/views/admin/configuration/configuration.php
index 8b8e6d01f5e833721fcb787c15020f0210c025c6..de80ac70e761cd53663b22ca74684da562947604 100644
--- a/app/views/admin/configuration/configuration.php
+++ b/app/views/admin/configuration/configuration.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var string $needle
+ * @var array $sections
+ * @var array $open_section
+ * @var array $only_section
+ */
+?>
 <section class="contentbox">
     <header>
         <h1>
diff --git a/app/views/admin/configuration/edit_configuration.php b/app/views/admin/configuration/edit_configuration.php
index 4818094e49164b7bcf03842b073db0ad50e597ef..aa4c574a6aa05e9dc3df9400ec47b8073cb9bb01 100644
--- a/app/views/admin/configuration/edit_configuration.php
+++ b/app/views/admin/configuration/edit_configuration.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_ConfigurationController $controller
+ * @var array $config
+ * @var array $allconfigs
+ */
+?>
 <form action="<?= $controller->link_for('admin/configuration/edit_configuration', ['field' => $config['field']]) ?>"
       method="post" data-dialog="size=auto" class="default">
     <?= CSRFProtection::tokenTag() ?>
diff --git a/app/views/admin/configuration/edit_range_config.php b/app/views/admin/configuration/edit_range_config.php
index 32d2d4c902893815aa0e2f6ddaa9b93c48271c58..3367aae6fff2e3f3b9172af8449a549232712a5e 100644
--- a/app/views/admin/configuration/edit_range_config.php
+++ b/app/views/admin/configuration/edit_range_config.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var Admin_ConfigurationController $controller
+ * @var string $range_type
+ * @var string $field
+ * @var User|Institute|Course $range
+ * @var array $config
+ */
+?>
 <form action="<?= $controller->link_for("admin/configuration/edit_{$range_type}_config", $range, compact('field')) ?>"
       method="post" data-dialo="size=auto" class="default">
     <?= CSRFProtection::tokenTag() ?>
diff --git a/app/views/admin/configuration/range_configuration.php b/app/views/admin/configuration/range_configuration.php
index f32bd0d5c23277fb75261ecf68f45a67472b499e..1bc650c10f975e48972cf6e2639fe376dae24a7a 100644
--- a/app/views/admin/configuration/range_configuration.php
+++ b/app/views/admin/configuration/range_configuration.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var string $title
+ * @var array $configs
+ */
+?>
 <table class="default">
     <caption>
         <?= htmlReady($title) ?>
diff --git a/app/views/admin/configuration/table-row.php b/app/views/admin/configuration/table-row.php
index ef161e30cf1394decf01408f0364f400f81357f5..12769ed5c3c535520fc5fda7fee934fd54ebe5ee 100644
--- a/app/views/admin/configuration/table-row.php
+++ b/app/views/admin/configuration/table-row.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var Admin_ConfigurationController $controller
+ * @var string $field
+ * @var string $linkchunk
+ * @var string $type
+ * @var string $value
+ */
+?>
 <tr id="field-<?= htmlReady($field) ?>">
     <td>
         <a data-dialog href="<?= $controller->link_for($linkchunk, compact('field')) ?>">
diff --git a/app/views/admin/configuration/type-edit.php b/app/views/admin/configuration/type-edit.php
index 6d277b45374617e59748c5b00a5766ec06e7281f..9fddb454f0a2c655ca85d36a5d93951d733c673f 100644
--- a/app/views/admin/configuration/type-edit.php
+++ b/app/views/admin/configuration/type-edit.php
@@ -1,5 +1,9 @@
+<?php
+/**
+ * @var string $value
+ */
+?>
 <? if ($type === 'boolean') : ?>
-
     <input type="hidden" name="value" value="0">
     <label>
         <input type="checkbox" name="value" value="1" <? if ($value) echo 'checked'; ?>>
diff --git a/app/views/admin/content_terms_of_use/delete.php b/app/views/admin/content_terms_of_use/delete.php
index d7aabd229e552d52f70f3fcdf24116457cc42e6e..d658fc1fd8cd895578a5e2806d860e4ae506410a 100644
--- a/app/views/admin/content_terms_of_use/delete.php
+++ b/app/views/admin/content_terms_of_use/delete.php
@@ -1,5 +1,12 @@
-
-
+<?php
+/**
+ * @var Admin_ContentTermsOfUseController $controller
+ * @var string $entry_id
+ * @var int $dependent_files_count
+ * @var ContentTermsOfUse[] $other_entries
+ * @var string $other_entry_id
+ */
+?>
 <form class="default" method="post" action="<?= $controller->link_for('admin/content_terms_of_use/delete') ?>">
     <input type="hidden" name="entry_id" value="<?= htmlReady($entry_id) ?>">
     <fieldset>
diff --git a/app/views/admin/content_terms_of_use/edit.php b/app/views/admin/content_terms_of_use/edit.php
index e72a15dcf6d90f2417432afb147da1c4e16f3b37..587332b3765d32d036813b16ea965a1cf971ee82 100644
--- a/app/views/admin/content_terms_of_use/edit.php
+++ b/app/views/admin/content_terms_of_use/edit.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_ContentTermsOfUseController $controller
+ * @var ContentTermsOfUse $entry
+ */
+?>
 <form class="default" method="post" action="<?= $controller->link_for('admin/content_terms_of_use/store?id=' . $entry->id) ?>">
     <?= CSRFProtection::tokenTag() ?>
     <fieldset>
diff --git a/app/views/admin/content_terms_of_use/index.php b/app/views/admin/content_terms_of_use/index.php
index afaeb810dbd3aa8f5a453210b58540d9ca49014c..4727fb13e930ca277d489d8c89f7d9ae4e288c82 100644
--- a/app/views/admin/content_terms_of_use/index.php
+++ b/app/views/admin/content_terms_of_use/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_ContentTermsOfUseController $controller
+ * @var ContentTermsOfUse[] $entries
+ */
+?>
 <table class="default">
     <caption><?= _('Inhalts-Nutzungsbedingungen') ?></caption>
     <thead>
diff --git a/app/views/admin/course_wizard_steps/edit.php b/app/views/admin/course_wizard_steps/edit.php
index ab3de24dd7b872c1462e1927c66a072ecae54ba2..067ff2eceb664a8a0c2996ac00c5903fb4faf0bd 100644
--- a/app/views/admin/course_wizard_steps/edit.php
+++ b/app/views/admin/course_wizard_steps/edit.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var array $availableClasses
+ * @var Admin_CourseWizardStepsController $controller
+ * @var CourseWizardStep $step
+ */
+?>
 <form class="default" action="<?= $controller->url_for('admin/coursewizardsteps/save', $step->id) ?>" method="post">
     <?= CSRFProtection::tokenTag() ?>
     <fieldset>
diff --git a/app/views/admin/course_wizard_steps/index.php b/app/views/admin/course_wizard_steps/index.php
index bed64e5ad4544380d76be25bcdab7f7ecc537f4b..19314f0418ec9abf1b135077d500a65b06f262e2 100644
--- a/app/views/admin/course_wizard_steps/index.php
+++ b/app/views/admin/course_wizard_steps/index.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var bool $has_enabled
+ * @var Admin_CourseWizardStepsController $controller
+ * @var CourseWizardStep[] $steps
+ */
+?>
 <? if (!$has_enabled) : ?>
     <?= MessageBox::info(_('Es gibt keine aktiven Schritte für den Anlegeassistenten!')) ?>
 <? endif ?>
diff --git a/app/views/admin/courseplanning/index.php b/app/views/admin/courseplanning/index.php
index 1b0b5e9ce2e13bfa13b3ef6acede745b36cd35f4..5fd28e95096143c220a443354f016e39d2eea505 100644
--- a/app/views/admin/courseplanning/index.php
+++ b/app/views/admin/courseplanning/index.php
@@ -1,10 +1,16 @@
-<?
-    $min_time = Config::get()->INSTITUTE_COURSE_PLAN_START_HOUR . ':00';
-    $max_time = Config::get()->INSTITUTE_COURSE_PLAN_END_HOUR . ':00';
+<?php
+/**
+ * @var string $plan_title
+ * @var array $events
+ * @var array $eventless_courses
+ * @var Admin_CourseplanningController $controller
+ */
+
+$min_time = Config::get()->INSTITUTE_COURSE_PLAN_START_HOUR . ':00';
+$max_time = Config::get()->INSTITUTE_COURSE_PLAN_END_HOUR . ':00';
 ?>
 
 <?= Studip\Fullcalendar::create($plan_title, [
-    'editable' => true,
     'minTime' => $min_time,
     'maxTime' => $max_time,
     'allDaySlot' => false,
diff --git a/app/views/admin/courseplanning/nonconform.php b/app/views/admin/courseplanning/nonconform.php
index 5a7aed49663215ff2ffd1ddd4ffd8fcd043c6f9f..08a128ad1f0bf56308f99d09b7f675de9f901c4f 100644
--- a/app/views/admin/courseplanning/nonconform.php
+++ b/app/views/admin/courseplanning/nonconform.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var array $non_conform_dates
+ * @var Course_DetailsController $controller
+ */
+?>
 <table class="default">
     <caption>
         <?= _('Folgende regelmäßige Termine von Veranstaltungen passen nicht in das vorgegebene Zeitraster:') ?>
diff --git a/app/views/admin/courseplanning/pick_color.php b/app/views/admin/courseplanning/pick_color.php
index b9a95b50f94bd1a2aa9e1c00e523e56a3f788c5b..dbd93a8ea0d33ae49193e91a22806f608108c9d1 100644
--- a/app/views/admin/courseplanning/pick_color.php
+++ b/app/views/admin/courseplanning/pick_color.php
@@ -1,3 +1,13 @@
+<?php
+/**
+ * @var Admin_CourseplanningController $controller
+ * @var string $metadate_id
+ * @var string $from_action
+ * @var string $weekday
+ * @var string $semtype
+ * @var string $color
+ */
+?>
 <form class="default" method="post" action="<?= $controller->pick_color($metadate_id, $from_action, $weekday) ?>" data-dialog="size=auto">
     <input type="hidden" id="selected-color" name="selected-color" value="<?= $color ?>">
 
diff --git a/app/views/admin/courseplanning/rename_column.php b/app/views/admin/courseplanning/rename_column.php
index 41400ae93de7674d60da014d601ef814a8ebfb1d..2cb8b67f542028ba6a8191611b04d6b44c360c70 100644
--- a/app/views/admin/courseplanning/rename_column.php
+++ b/app/views/admin/courseplanning/rename_column.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_CourseplanningController $controller
+ * @var string $column_id
+ * @var string $week_day
+ * @var string $column_name
+ */
+?>
 <form class="default" method="post" action="<?= $controller->link_for('admin/courseplanning/rename_column/' . $column_id . '/' . $week_day) ?>" data-dialog="size=auto">
     <label>
         <?= _('Spaltenname') ?>
diff --git a/app/views/admin/courseplanning/viewcolumns.php b/app/views/admin/courseplanning/viewcolumns.php
index cc072733fc1f95110c9706fe0442eba70864ce55..3082f0c9cd27dbd2031c54de908bc6700ddc234e 100644
--- a/app/views/admin/courseplanning/viewcolumns.php
+++ b/app/views/admin/courseplanning/viewcolumns.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_CourseplanningController $controller
+ * @var string $column_id
+ * @var array $columns
+ * @var string $institute_id
+ */
+?>
 <form class="default" method="POST" action="<?= $controller->url_for('admin/courseplanning/viewcolumns/' . $week_day) ?>" data-dialog="size=auto">
 
     <table class="default">
diff --git a/app/views/admin/courseplanning/weekday.php b/app/views/admin/courseplanning/weekday.php
index a0e15c769b624ff6172b6a8848fc02af0492b64e..cc1a14ecd22c792d7a6422ceb7505c337e6386ab 100644
--- a/app/views/admin/courseplanning/weekday.php
+++ b/app/views/admin/courseplanning/weekday.php
@@ -1,6 +1,15 @@
-<?
-    $min_time = Config::get()->INSTITUTE_COURSE_PLAN_START_HOUR . ':00';
-    $max_time = Config::get()->INSTITUTE_COURSE_PLAN_END_HOUR . ':00';
+<?php
+/**
+ * @var Admin_CourseplanningController $controller
+ * @var DateTime $cal_date
+ * @var string $plan_title
+ * @var array $events
+ * @var array $columns
+ * @var array $eventless_courses
+ */
+
+$min_time = Config::get()->INSTITUTE_COURSE_PLAN_START_HOUR . ':00';
+$max_time = Config::get()->INSTITUTE_COURSE_PLAN_END_HOUR . ':00';
 ?>
 
 <? $days = ['Sonntag', 'Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag']; ?>
@@ -12,7 +21,6 @@
 </div>
 
 <?= Studip\Fullcalendar::create($plan_title, [
-    'editable' => true,
     'minTime' => $min_time,
     'maxTime' => $max_time,
     'allDaySlot' => false,
diff --git a/app/views/admin/courses/_course.php b/app/views/admin/courses/_course.php
index 80cec90d39e26234dae3ca40db6d71bdd31240c1..87491fd152ae1657210a71566488a8e869a82789 100644
--- a/app/views/admin/courses/_course.php
+++ b/app/views/admin/courses/_course.php
@@ -1,8 +1,17 @@
 <?php
-/*
+/**
  * Show course only if it has no parent course or the parent course is not
  * part of the current view. Otherwise the current course will be listed
  * as subcourse under its parent.
+ *
+ * @var array $values
+ * @var array $courses
+ * @var string $semid
+ * @var string $parent
+ * @var Admin_CoursesController $controller
+ * @var array $view_filter
+ * @var Semester $semester
+ * @var string $selected_action
  */
 if (!$values['parent_course'] || !in_array($values['parent_course'], array_keys($courses))) : ?>
     <?php
diff --git a/app/views/admin/courses/add_to_archive.php b/app/views/admin/courses/add_to_archive.php
index 1d96f98f12e5c35be6cf039a4e66ef6197f99250..802b7d613de9b65c228475d380f8a3f155c6a1ad 100644
--- a/app/views/admin/courses/add_to_archive.php
+++ b/app/views/admin/courses/add_to_archive.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var Course $course
+ */
+?>
 <label>
     <input name="archiv_sem[]" type="checkbox" value="<?= htmlReady($course->id) ?>">
 </label>
diff --git a/app/views/admin/courses/additional_inputs.php b/app/views/admin/courses/additional_inputs.php
index 5d84f69ee754b7c82a2a4379e4ab97ea442b347f..54c32e931fb04a8ef1c851ae7c0f51b892bd5ced 100644
--- a/app/views/admin/courses/additional_inputs.php
+++ b/app/views/admin/courses/additional_inputs.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var string $colspan
+ * @var string $selected_action
+ * @var string $selected_action
+ * @var array $values
+ */
+?>
 <tr>
     <th colspan="<?= $colspan ?>" style="text-align: right">
         <? switch ($selected_action) {
@@ -25,4 +33,4 @@
                 break;
         }?>
     </th>
-</tr>
\ No newline at end of file
+</tr>
diff --git a/app/views/admin/courses/admission_locked.php b/app/views/admin/courses/admission_locked.php
index 20e6f0a0dbcf747bf0ce3b531bb2d942a684985f..38c3bf09da21cfd3cd0a47b4b14db3e9f03c6604 100644
--- a/app/views/admin/courses/admission_locked.php
+++ b/app/views/admin/courses/admission_locked.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Course $course
+ * @var array $values
+ */
+?>
 <input type="hidden" name="all_sem[]" value="<?= htmlReady($course->id) ?>">
 <label>
     <input type="checkbox" <?= $values['admission_locked'] == 'disable' ? 'disabled' : '' ?>
diff --git a/app/views/admin/courses/aux-select.php b/app/views/admin/courses/aux-select.php
index 9088902428e27922e7f5a65bf24eba56fbb5c2d3..1786598a0b2c4c007e14f04ff378e275f1b21aff 100644
--- a/app/views/admin/courses/aux-select.php
+++ b/app/views/admin/courses/aux-select.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Course $course
+ * @var array $aux_lock_rules
+ */
+?>
 <select name="lock_sem[<?= htmlReady($course->id) ?>]" style="max-width: 200px">
 <? foreach ($aux_lock_rules as $id => $rule) : ?>
     <option value="<?= $id ?>" <?= $values['aux_lock_rule'] == $id ?  'selected' : '' ?>>
diff --git a/app/views/admin/courses/aux_preselect.php b/app/views/admin/courses/aux_preselect.php
index 86e88befb0e816050a37f9e4dba66e4f111ddbd9..e44e378973f7926a879c3329e45afc616e9991f1 100644
--- a/app/views/admin/courses/aux_preselect.php
+++ b/app/views/admin/courses/aux_preselect.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var array $values
+ * @var array $aux_lock_rules
+ */
+?>
 <label><?= _('Für alle Veranstaltungen') ?>
     <select name="lock_sem_all" style="max-width: 200px">
         <? foreach ($aux_lock_rules as $id => $rule) : ?>
@@ -12,4 +18,4 @@
 <input type="checkbox" value="1" name="aux_all_forced">
 <?=_("Erzwungen")?>
 </label>
-<?= \Studip\Button::createAccept(_('Speichern'), 'all'); ?>
\ No newline at end of file
+<?= \Studip\Button::createAccept(_('Speichern'), 'all'); ?>
diff --git a/app/views/admin/courses/courses.php b/app/views/admin/courses/courses.php
index ee5ce7e09db616835abb84449f7f53c801ccfa38..0d19b0017820ef3adb433091d9a9c373e69babee 100644
--- a/app/views/admin/courses/courses.php
+++ b/app/views/admin/courses/courses.php
@@ -1,14 +1,28 @@
-<? $colspan = 2 ?>
+<?php
+/**
+ * @var string $selected_action
+ * @var array $view_filter
+ * @var Semester $semester
+ * @var int $count_courses
+ * @var string $sortby
+ * @var string $sortFlag
+ * @var int $nav_elements
+ * @var array $courses
+ */
+
+$colspan = 2
+?>
+
 <? if (!empty($actions[$selected_action]['multimode'])) : ?>
     <form action="<?= URLHelper::getLink($actions[$selected_action]['url']) ?>" method="post">
 <? endif ?>
 <?= CSRFProtection::tokenTag() ?>
 <table class="default course-admin">
     <colgroup>
-        <col width="2%">
+        <col style="width: 2%">
     <? if (in_array('number', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="8%">
+        <col style="width: 8%">
     <? endif ?>
     <? if (in_array('name', $view_filter)) : ?>
         <? $colspan++ ?>
@@ -16,57 +30,57 @@
     <? endif ?>
     <? if (in_array('type', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="10%">
+        <col style="width: 10%">
     <? endif ?>
     <? if (in_array('room_time', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="30%">
+        <col style="width: 30%">
     <? endif ?>
         <? if (in_array('semester', $view_filter)) : ?>
             <? $colspan++ ?>
-            <col width="10%">
+            <col style="width: 10%">
         <? endif ?>
         <? if (in_array('institute', $view_filter)) : ?>
             <? $colspan++ ?>
-            <col width="10%">
+            <col style="width: 10%">
         <? endif ?>
         <? if (in_array('requests', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="5%">
+        <col style="width: 5%">
     <? endif ?>
     <? if (in_array('teachers', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="10%">
+        <col style="width: 10%">
     <? endif ?>
     <? if (in_array('members', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="3%">
+        <col style="width: 3%">
     <? endif ?>
     <? if (in_array('waiting', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="5%">
+        <col style="width: 5%">
     <? endif ?>
     <? if (in_array('preliminary', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="5%">
+        <col style="width: 5%">
     <? endif ?>
     <? if (in_array('contents', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="8%">
+        <col style="width: 8%">
     <? endif ?>
     <? if (in_array('last_activity', $view_filter)) : ?>
         <? $colspan++ ?>
-        <col width="8%">
+        <col style="width: 8%">
     <? endif ?>
         <? foreach (PluginManager::getInstance()->getPlugins("AdminCourseContents") as $plugin) : ?>
             <? foreach ($plugin->adminAvailableContents() as $index => $label) : ?>
                 <? if (in_array($plugin->getPluginId()."_".$index, $view_filter)) : ?>
                     <? $colspan++ ?>
-                    <col width="8%">
+                    <col style="width: 8%">
                 <? endif ?>
             <? endforeach ?>
         <? endforeach ?>
-        <col width="15%">
+        <col style="width: 15%">
 
     </colgroup>
     <caption>
@@ -152,8 +166,7 @@
         <? endif ?>
         <? if (in_array('members', $view_filter)) : ?>
             <th <?= ($sortby == 'teilnehmer') ? sprintf('class="sort%s"', mb_strtolower($sortFlag)) : '' ?>>
-                <a href="<?=
-                URLHelper::getLink('', ['sortby'   => 'teilnehmer',
+                <a href="<?= URLHelper::getLink('', ['sortby'   => 'teilnehmer',
                                              'sortFlag' => mb_strtolower($sortFlag)]) ?>">
                     <abbr title="<?= _('Teilnehmende') ?>">
                         <?= _('TN') ?>
diff --git a/app/views/admin/courses/export_csv.php b/app/views/admin/courses/export_csv.php
index 795c3003067856033d44f61d092a8a144ce1a10f..b2933404eb2f4cb7debad0ff698b2266e67ff186 100644
--- a/app/views/admin/courses/export_csv.php
+++ b/app/views/admin/courses/export_csv.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_CoursesController $controller
+ * @var array $fields
+ * @var array $selection
+ */
+?>
 <form action="<?= $controller->link_for('admin/courses/export_csv') ?>" method="get" class="default">
     <fieldset>
     <? foreach ($fields as $index => $name) : ?>
diff --git a/app/views/admin/courses/get_subcourses.php b/app/views/admin/courses/get_subcourses.php
index dfa0d21f6de039445e520d87a68bab44a0b3c549..b2857ae7f45914932a0fb17386b1cbe4229ef2b4 100644
--- a/app/views/admin/courses/get_subcourses.php
+++ b/app/views/admin/courses/get_subcourses.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var array $courses
+ * @var array $view_filter
+ * @var array $actions
+ * @var string $selected_action
+ * @var string $parent
+ */
+?>
 <?php foreach ($courses as $semid => $values) : ?>
     <?= $this->render_partial('admin/courses/_course', compact('semid', 'values', 'view_filter', 'actions', 'selected_action', 'parent', 'courses')) ?>
 <?php endforeach;
diff --git a/app/views/admin/courses/index.php b/app/views/admin/courses/index.php
index c5a17c8306261f489a93f5c4b83a2512514998c1..7145332b37f67035fc4b6b3b7f844fb1da613fc5 100644
--- a/app/views/admin/courses/index.php
+++ b/app/views/admin/courses/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_CoursesController $controller
+ * @var int $count_courses
+ */
+?>
 <? if (empty($insts)): ?>
     <?= MessageBox::info(sprintf(_('Sie wurden noch keinen Einrichtungen zugeordnet. Bitte wenden Sie sich an einen der zuständigen %sAdministratoren%s.'), '<a href="' . URLHelper::getLink('dispatch.php/siteinfo/show') . '">', '</a>')) ?>
 <? elseif (!empty($courses)): ?>
diff --git a/app/views/admin/courses/lock.php b/app/views/admin/courses/lock.php
index 83d2c1163d28a977f80ea6ce3c33178ba69fcbd6..459b8f744fdad80fb1b545cea1de2b175f8bdc03 100644
--- a/app/views/admin/courses/lock.php
+++ b/app/views/admin/courses/lock.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var array $values
+ * @var SimpleCollection $all_lock_rules
+ * @var Course $course
+ */
+?>
 <? $current_lock_rule = $all_lock_rules->findOneBy('lock_id', $values['lock_rule']); ?>
 <? if (!$GLOBALS['perm']->have_perm('root') && ($current_lock_rule['permission'] == 'admin' || $current_lock_rule['permission'] == 'root')) : ?>
     <?= htmlReady($current_lock_rule['name'])?>
diff --git a/app/views/admin/courses/lock_preselect.php b/app/views/admin/courses/lock_preselect.php
index ced1499f9b940cbcba9c225e55d8e6000a62d6c8..b9bfcef73fa04c6ce2d075ab5e4a04d44e28d6ea 100644
--- a/app/views/admin/courses/lock_preselect.php
+++ b/app/views/admin/courses/lock_preselect.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var array $values
+ * @var SimpleCollection $all_lock_rules
+ */
+?>
 <label><?= _('Für alle Veranstaltungen') ?>
     <select name="lock_sem_all" style="max-width: 200px">
         <? for ($i = 0; $i < count($all_lock_rules); $i++) : ?>
@@ -9,4 +15,4 @@
     </select>
 </label>
 
-<?= \Studip\Button::createAccept(_('Zuweisen'), 'all'); ?>
\ No newline at end of file
+<?= \Studip\Button::createAccept(_('Zuweisen'), 'all'); ?>
diff --git a/app/views/admin/courses/notice-action.php b/app/views/admin/courses/notice-action.php
index c9866e18ba3a1d6cba0473553f3177e406f597ba..3d32fb6f27e7803b5d7e96b7136e9de16e518ac8 100644
--- a/app/views/admin/courses/notice-action.php
+++ b/app/views/admin/courses/notice-action.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var array $action
+ * @var Course $course
+ * @var string $action
+ */
+?>
 <?php
     $notice = $course->config->COURSE_ADMIN_NOTICE;
     $method = $notice ? 'createHasNotice' : 'createHasNoNotice';
diff --git a/app/views/admin/courses/notice.php b/app/views/admin/courses/notice.php
index 00e6f57a78f20a9d7efce391441c51dcc000ed34..03571ca5a7ec0090e1435d0bd561aaed2f20a512 100644
--- a/app/views/admin/courses/notice.php
+++ b/app/views/admin/courses/notice.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_CoursesController $controller
+ * @var Course $course
+ * @var string $notice
+ */
+?>
 <form action="<?= $controller->notice($course) ?>" method="post" data-dialog class="default">
     <fieldset>
         <legend>
diff --git a/app/views/admin/courses/sidebar.php b/app/views/admin/courses/sidebar.php
index a2a1d2cc5e7b00c8b61cdb1c32c2b2e6b60a3048..808e99aadf95b3e4e3062318d9463fead70e989b 100644
--- a/app/views/admin/courses/sidebar.php
+++ b/app/views/admin/courses/sidebar.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var array $userSelectedElements
+ * @var DatafieldEntryModel[] $datafields
+ */
+?>
 <form class="default" method="post"
     action="<?= URLHelper::getLink('dispatch.php/admin/courses/sidebar'); ?>" >
     <input type="hidden" name="updateConfig" value="1">
diff --git a/app/views/admin/courses/visibility.php b/app/views/admin/courses/visibility.php
index 90447f951d18028eba95fbf9a4be5789b994eefb..0f94492bc40c7756900fd5a6bf01a06f56427901 100644
--- a/app/views/admin/courses/visibility.php
+++ b/app/views/admin/courses/visibility.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var Course $course
+ */
+?>
 <? if ($GLOBALS['perm']->have_perm("admin") || !LockRules::Check($course->id, "seminar_visibility")) : ?>
     <label>
         <input type="hidden" name="all_sem[]" value="<?= htmlReady($course->id) ?>">
diff --git a/app/views/admin/cronjobs/logs/display.php b/app/views/admin/cronjobs/logs/display.php
index 6a0e0bc00194dccb073f101d3ca4fb7f94d33d5b..f1e8d72e2419f3a54e0afb59efa16aa5100ba0b3 100644
--- a/app/views/admin/cronjobs/logs/display.php
+++ b/app/views/admin/cronjobs/logs/display.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var CronjobLog $log
+ */
+?>
 <dl class="cronlog">
     <dt><?= _('Cronjob') ?></dt>
     <dd><?= htmlReady($log->schedule->title) ?></dd>
diff --git a/app/views/admin/cronjobs/logs/index.php b/app/views/admin/cronjobs/logs/index.php
index 68cde6050208690db20903f39644142f78869356..1073d1bd3319a53100a18646deaf4acd7bdc4e95 100644
--- a/app/views/admin/cronjobs/logs/index.php
+++ b/app/views/admin/cronjobs/logs/index.php
@@ -1,4 +1,15 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var Admin_Cronjobs_LogsController $controller
+ * @var Pagination $pagination
+ * @var int $total
+ * @var array $filter
+ * @var CronjobSchedule[] $schedules
+ * @var CronjobTask[] $tasks
+ * @var CronjobLog[] $logs
+ */
+use Studip\Button, Studip\LinkButton;
+?>
 
 <form action="<?= $controller->filter() ?>" method="post" class="cronjob-filters default">
     <fieldset>
diff --git a/app/views/admin/cronjobs/schedules/display.php b/app/views/admin/cronjobs/schedules/display.php
index 7d49b2d30378fd1b8f2c48ef05062f8e41aa91bb..8eb9075961090a2051a21d8295c5beaf9c6418e5 100644
--- a/app/views/admin/cronjobs/schedules/display.php
+++ b/app/views/admin/cronjobs/schedules/display.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var CronjobSchedule $schedule
+ * @var Admin_Cronjobs_SchedulesController $controller
+ */
+?>
 <dl class="cronjob">
     <dt><?= _('Titel') ?></dt>
     <dd><?= htmlReady($schedule->title) ?></dd>
diff --git a/app/views/admin/cronjobs/schedules/edit.php b/app/views/admin/cronjobs/schedules/edit.php
index 4b5b3dfd819743802aee6b9f318b89034048f44b..b73aa3a0a9f0e6304ef3c5bf3efba9ddae005801 100644
--- a/app/views/admin/cronjobs/schedules/edit.php
+++ b/app/views/admin/cronjobs/schedules/edit.php
@@ -1,17 +1,23 @@
-<? use Studip\Button, Studip\LinkButton; ?>
-
 <?php
-    $days_of_week = [
-        1 => _('Montag'),
-        2 => _('Dienstag'),
-        3 => _('Mittwoch'),
-        4 => _('Donnerstag'),
-        5 => _('Freitag'),
-        6 => _('Samstag'),
-        7 => _('Sonntag'),
-    ];
+/**
+ * @var CronjobSchedule $schedule
+ * @var Admin_Cronjobs_SchedulesController $controller
+ * @var int $page
+ * @var CronjobTask[] $tasks
+ */
+
+use Studip\Button, Studip\LinkButton;
+
+$days_of_week = [
+    1 => _('Montag'),
+    2 => _('Dienstag'),
+    3 => _('Mittwoch'),
+    4 => _('Donnerstag'),
+    5 => _('Freitag'),
+    6 => _('Samstag'),
+    7 => _('Sonntag'),
+];
 ?>
-
 <form action="<?= $controller->edit($schedule, $page) ?>" method="post" class="cronjobs-edit default">
     <?= CSRFProtection::tokenTag() ?>
 
@@ -238,4 +244,4 @@
         <?= Button::createAccept(_('Speichern'), 'store') ?>
         <?= LinkButton::createCancel('Abbrechen', $controller->indexURL($page)) ?>
     </footer>
-</form>
\ No newline at end of file
+</form>
diff --git a/app/views/admin/cronjobs/schedules/index.php b/app/views/admin/cronjobs/schedules/index.php
index 4a188dd0e42b6ce1224172638b3c0c87652cf20b..2db97d1af1e7d24d9bc756abf3607c324c8e4391 100644
--- a/app/views/admin/cronjobs/schedules/index.php
+++ b/app/views/admin/cronjobs/schedules/index.php
@@ -1,4 +1,15 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var CronjobTask[] $tasks
+ * @var CronjobSchedule[] $schedules
+ * @var Admin_Cronjobs_SchedulesController $controller
+ * @var Pagination $pagination
+ * @var int $total
+ * @var array $filter
+ */
+
+use Studip\Button, Studip\LinkButton;
+?>
 
 <form action="<?= $controller->filter() ?>" method="post" class="default cronjob-filters">
     <fieldset>
@@ -160,4 +171,4 @@
         </tr>
         </tfoot>
     </table>
-</form>
\ No newline at end of file
+</form>
diff --git a/app/views/admin/cronjobs/schedules/parameters.php b/app/views/admin/cronjobs/schedules/parameters.php
index e4ffefdd2f1a7ccf34101f57dd3e18169c277aea..c78e6d827681bfa78a3ac1bcfd3755ddf46d3081 100644
--- a/app/views/admin/cronjobs/schedules/parameters.php
+++ b/app/views/admin/cronjobs/schedules/parameters.php
@@ -1,6 +1,12 @@
 <?php
-    $selected   = !$schedule->isNew() && $schedule->task_id === $task->task_id;
-    $parameters = $schedule->parameters;
+/**
+ * @var CronjobSchedule $schedule
+ * @var CronjobTask $task
+ * @var Admin_Cronjobs_SchedulesController $controller
+ */
+
+$selected   = !$schedule->isNew() && $schedule->task_id === $task->task_id;
+$parameters = $schedule->parameters;
 ?>
 
 <h3><?= _('Parameter') ?></h3>
diff --git a/app/views/admin/cronjobs/schedules/periodic-schedule.php b/app/views/admin/cronjobs/schedules/periodic-schedule.php
index 021002adf559ebba72d393a91be2ef9601844474..2ed677cf84075bf1da134db71d10a4c34082ed5b 100644
--- a/app/views/admin/cronjobs/schedules/periodic-schedule.php
+++ b/app/views/admin/cronjobs/schedules/periodic-schedule.php
@@ -1,4 +1,13 @@
 <?php
+/**
+ * @var string $minute
+ * @var string $hour
+ * @var string $day
+ * @var string $month
+ * @var string $day_of_week
+ */
+?>
+<?php
 $cronify = function ($n) {
     if ($n === null) {
         return '*';
diff --git a/app/views/admin/cronjobs/tasks/execute.php b/app/views/admin/cronjobs/tasks/execute.php
index e0c1e03310f8c488f24b42fb06649d143286b8c9..03adefe1170eb07b4a8784e59b2410271f39ad27 100644
--- a/app/views/admin/cronjobs/tasks/execute.php
+++ b/app/views/admin/cronjobs/tasks/execute.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_Cronjobs_TasksController $controller
+ * @var CronjobTask $task
+ */
+?>
 <h2><?= sprintf(_('Cronjob-Aufgabe "%s" ausführen'), htmlReady($task->name)) ?></h2>
 <? if (isset($result)): ?>
     <pre><code><?= htmlReady($result ?: _('- Keine Ausgabe -')) ?></code></pre>
@@ -11,4 +17,4 @@
             <?= Studip\Button::createAccept(_('Ausführen'), 'submit') ?>
         </div>
     </form>
-<? endif; ?>
\ No newline at end of file
+<? endif; ?>
diff --git a/app/views/admin/cronjobs/tasks/index.php b/app/views/admin/cronjobs/tasks/index.php
index 0169bb78a1ffa54b49b271afca6134d3d778ae1c..2e0adde53d15946cc26a457d823b9138d885a446 100644
--- a/app/views/admin/cronjobs/tasks/index.php
+++ b/app/views/admin/cronjobs/tasks/index.php
@@ -1,4 +1,12 @@
-<? use Studip\Button; ?>
+<?php
+/**
+ * @var Admin_Cronjobs_TasksController $controller
+ * @var Pagination $pagination
+ * @var CronjobTask[] $tasks
+ */
+
+use Studip\Button;
+?>
 
 <form action="<?= $controller->bulk($pagination->getCurrentPage()) ?>" method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
diff --git a/app/views/admin/datafields/config.php b/app/views/admin/datafields/config.php
index ae3fa9715479f1101e961d3bab3f869fdf042dfd..2bed85a14ea8ac4ece9eb413fbd0b28fda1d005a 100644
--- a/app/views/admin/datafields/config.php
+++ b/app/views/admin/datafields/config.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_DatafieldsController $controller
+ * @var DataField $struct
+ */
+?>
 <form action="<?= $controller->url_for('admin/datafields/config/' . $struct->id) ?>" method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
 
diff --git a/app/views/admin/datafields/edit.php b/app/views/admin/datafields/edit.php
index 5d8116a4f0f244ea04b079936f2ea3878eab0e9d..46b7aa1dcb8c988220d3a291f4ff4aabea6fe753 100644
--- a/app/views/admin/datafields/edit.php
+++ b/app/views/admin/datafields/edit.php
@@ -1,5 +1,13 @@
-<?
+<?php
 # Lifter010: TODO
+/**
+ * @var Admin_DatafieldsController $controller
+ * @var DataField $item
+ * @var string $datafield_id
+ * @var DataFieldEntry $datafield_entry
+ * @var array $institutes
+ */
+
 use Studip\Button, Studip\LinkButton;
 ?>
 
diff --git a/app/views/admin/datafields/index.php b/app/views/admin/datafields/index.php
index a10dba7f7b1c25955d22d92105ed236dc22bb8cf..e62b8d6fd0004832747a165d16ad94fd22a1694b 100644
--- a/app/views/admin/datafields/index.php
+++ b/app/views/admin/datafields/index.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var Admin_DatafieldsController $controller
+ * @var array $datafields_list
+ * @var array $allclasses
+ * @var string $current_class
+ * @var string $class_filter
+ */
+?>
 <!-- Alle Datenfelder  -->
 <table class="collapsable default">
     <colgroup>
@@ -20,7 +29,7 @@
         <tr>
             <th rowspan="2"><?= _('Name') ?></th>
             <th rowspan="2"><?= _('Feldtyp') ?></th>
-            <th rowspan="2" style="word-wrap: nowrap">
+            <th rowspan="2" style="white-space: nowrap">
                 <?= _('Typ') ?>
                 <?= tooltipIcon(_('Veranstaltungskategorie, Einrichtungstyp, Sprache bzw. Nutzerstatus')) ?>
             </th>
diff --git a/app/views/admin/datafields/new.php b/app/views/admin/datafields/new.php
index 575d0de6d7a94d42ae19c120a22fdc8eb026d386..25d9a8a0a5da6393694dee40abc005cb704c554b 100644
--- a/app/views/admin/datafields/new.php
+++ b/app/views/admin/datafields/new.php
@@ -1,4 +1,14 @@
 <?php
+/**
+ * @var Admin_DatafieldsController $controller
+ * @var string $object_typ
+ * @var string $type_name
+ * @var string $object_type
+ * @var array $institutes
+ * @var Institute $item
+ * @var DataField $datafield
+ */
+
 use Studip\Button, Studip\LinkButton;
 ?>
 
diff --git a/app/views/admin/datafields/preview.php b/app/views/admin/datafields/preview.php
index 9980d0ce20ba72de75fecfce8cc3dccfca0e50a8..334a33c05953cdb72569494bb4f0562b55ca2f86 100644
--- a/app/views/admin/datafields/preview.php
+++ b/app/views/admin/datafields/preview.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_DatafieldsController $controller
+ * @var DataField $struct
+ * @var DataFieldEntry $preview
+ */
+?>
 <form action="<?= $controller->url_for('admin/datafields/config/' . $struct->id) ?>" method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
 
diff --git a/app/views/admin/datafields/type_select.php b/app/views/admin/datafields/type_select.php
index e430a755b7db5a182049d26a09a0cdfd7e17e5d8..a519d5ce5281e96d794e886e7574ecda62296816 100644
--- a/app/views/admin/datafields/type_select.php
+++ b/app/views/admin/datafields/type_select.php
@@ -1,4 +1,10 @@
 <?php
+/**
+ * @var Admin_DatafieldsController $controller
+ * @var array $allclasses
+ * @var string $class_filter
+ */
+
 use Studip\Button, Studip\LinkButton;
 ?>
 
diff --git a/app/views/admin/domain/edit.php b/app/views/admin/domain/edit.php
index d63172ce9981a4c5544494fbf9e9833760e243a1..00a28c9fc3d4061aec9423417fcdb9343583fd5d 100644
--- a/app/views/admin/domain/edit.php
+++ b/app/views/admin/domain/edit.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_DomainController $controller
+ * @var UserDomain $domain
+ */
+?>
 <form action="<?= $controller->link_for("admin/domain/save/{$domain->id}") ?>" method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
 
diff --git a/app/views/admin/domain/index.php b/app/views/admin/domain/index.php
index 1d935eb1759f24c2aa61aaced6830c7bf6d056e4..4b709d7e9bbbdb90606ec424999a7c5571e61584 100644
--- a/app/views/admin/domain/index.php
+++ b/app/views/admin/domain/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_DomainController $controller
+ * @var UserDomain[] $domains
+ */
+?>
 <? if (count($domains) == 0) : ?>
     <?= MessageBox::info(_('Es sind keine Nutzerdomänen vorhanden.')) ?>
 <? else : ?>
diff --git a/app/views/admin/holidays/edit.php b/app/views/admin/holidays/edit.php
index 4cdd3c2986b7273689c940a94438efdca2bc7b94..9758d4dccd0dfeddb051b95003a531998ef74750 100644
--- a/app/views/admin/holidays/edit.php
+++ b/app/views/admin/holidays/edit.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_HolidaysController $controller
+ * @var SemesterHoliday $holiday
+ */
+?>
 <form method="post" class="default" action="<?= $controller->url_for('admin/holidays/edit/' . $holiday->id) ?>" data-dialog="size=auto">
     <?= CSRFProtection::tokenTag() ?>
 
diff --git a/app/views/admin/holidays/index.php b/app/views/admin/holidays/index.php
index 23f720f659deb8101df4247aebc317c378ab6396..7c4446a99fbafe1e4fbb2a7c1ba4f4cd6f0b3809 100644
--- a/app/views/admin/holidays/index.php
+++ b/app/views/admin/holidays/index.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_HolidaysController $controller
+ * @var SemesterHoliday[] $holidays
+ * @var string $filter
+ */
+?>
 <form action="<?= $controller->url_for('admin/holidays/delete/bulk') ?>" method="post">
     <?= CSRFProtection::tokenTag() ?>
 
diff --git a/app/views/admin/ilias_interface/add_ilias.php b/app/views/admin/ilias_interface/add_ilias.php
index f20970029a7740bbe0d61a1e339c6c7e0c9361d7..d40133f5ec5cfef61880e84c77bb7bed29a2f36a 100644
--- a/app/views/admin/ilias_interface/add_ilias.php
+++ b/app/views/admin/ilias_interface/add_ilias.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_IliasInterfaceController $controller
+ * @var string $ilias_index
+ * @var array $existing_indices
+ * @var array $ilias_config
+ */
+?>
 <form class="default" action="<?= $controller->url_for('admin/ilias_interface/save/'.$ilias_index) ?>" method="post">
     <?= CSRFProtection::tokenTag() ?>
     <? if (count($existing_indices)) : ?>
@@ -23,4 +31,4 @@
         <?= Studip\Button::createAccept(_('Speichern'), 'submit') ?>
         <?= Studip\Button::createCancel(_('Abbrechen'), 'cancel', ['data-dialog' => 'close']) ?>
     </footer>
-</form>
\ No newline at end of file
+</form>
diff --git a/app/views/admin/ilias_interface/edit_content.php b/app/views/admin/ilias_interface/edit_content.php
index 908e1936ece3c7c4ba0dd3bb860937beb3232c79..fdbaed95cf7ca9b94fefbba1b6225cb8d6776bd5 100644
--- a/app/views/admin/ilias_interface/edit_content.php
+++ b/app/views/admin/ilias_interface/edit_content.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_IliasInterfaceController $controller
+ * @var string $ilias_index
+ * @var array $ilias_config
+ * @var array $modules_available
+ */
+?>
 <form class="default" action="<?= $controller->url_for('admin/ilias_interface/save/'.$ilias_index) ?>" method="post">
     <?= CSRFProtection::tokenTag() ?>
     <input type="hidden" name="ilias_content_settings" size="50" maxlength="255" value="1">
diff --git a/app/views/admin/ilias_interface/edit_interface_settings.php b/app/views/admin/ilias_interface/edit_interface_settings.php
index 5143cd0b57860dd2cd7715040b53be10edf8e705..9b0627d630014ecc0f804be361de6fc2fc315e5e 100644
--- a/app/views/admin/ilias_interface/edit_interface_settings.php
+++ b/app/views/admin/ilias_interface/edit_interface_settings.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_IliasInterfaceController $controller
+ * @var string $ilias_interface_moduletitle
+ * @var array $ilias_interface_config
+ */
+?>
 <form class="default" action="<?= $controller->url_for('admin/ilias_interface/save_interface_settings/') ?>" method="post">
     <?= CSRFProtection::tokenTag() ?>
     <label>
diff --git a/app/views/admin/ilias_interface/edit_permissions.php b/app/views/admin/ilias_interface/edit_permissions.php
index 81b53e98c7dbb30ce345ae5140006157964fc1bd..ef85091406e2e85e9a2e434d9f98162e728adb3d 100644
--- a/app/views/admin/ilias_interface/edit_permissions.php
+++ b/app/views/admin/ilias_interface/edit_permissions.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_IliasInterfaceController $controller
+ * @var string $ilias_index
+ * @var array $ilias_config
+ */
+?>
 <form class="default" action="<?= $controller->url_for('admin/ilias_interface/save/'.$ilias_index) ?>" method="post">
     <?= CSRFProtection::tokenTag() ?>
     <label>
@@ -22,4 +29,4 @@
         <?= Studip\Button::createAccept(_('Speichern'), 'submit') ?>
         <?= Studip\Button::createCancel(_('Abbrechen'), 'cancel', ['data-dialog' => 'close']) ?>
     </footer>
-</form>
\ No newline at end of file
+</form>
diff --git a/app/views/admin/ilias_interface/edit_server.php b/app/views/admin/ilias_interface/edit_server.php
index b8b47bfe1bed6d392bf5fbc0f2d808bf8b5de8d4..4c4fb67fe7da43e866c39f200006d05911e9cf60 100644
--- a/app/views/admin/ilias_interface/edit_server.php
+++ b/app/views/admin/ilias_interface/edit_server.php
@@ -1,3 +1,16 @@
+<?php
+/**
+ * @var Admin_IliasInterfaceController $controller
+ * @var string $ilias_index
+ * @var string $valid_url
+ * @var string $ilias_version
+ * @var string $ilias_version_date
+ * @var string $ldap_options
+ * @var array $existing_indices
+ * @var array $ilias_config
+ * @var array $ilias_clients
+ */
+?>
 <? if (!$valid_url) : ?>
 <form class="default" action="<?= $controller->url_for('admin/ilias_interface/edit_server/'.$ilias_index) ?>" method="post">
 <? else : ?>
diff --git a/app/views/admin/ilias_interface/index.php b/app/views/admin/ilias_interface/index.php
index 6c103ac34052dd988031024fd14d5263ff127e26..b4789a8d82d7a4c9800b5f79d07a1c8f8e9d8f5d 100644
--- a/app/views/admin/ilias_interface/index.php
+++ b/app/views/admin/ilias_interface/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_IliasInterfaceController $controller
+ * @var array $ilias_configs
+ */
+?>
  <form method="post">
     <?= CSRFProtection::tokenTag() ?>
     <table class="default">
diff --git a/app/views/admin/ilias_interface/soap_methods.php b/app/views/admin/ilias_interface/soap_methods.php
index a6c6dc804ba3011ad3f93a51abcf17254679783b..19010745580262685bcbf19a264836579074eec0 100644
--- a/app/views/admin/ilias_interface/soap_methods.php
+++ b/app/views/admin/ilias_interface/soap_methods.php
@@ -1,3 +1,13 @@
+<?php
+/**
+ * @var Admin_IliasInterfaceController $controller
+ * @var string $ilias_index
+ * @var string $ilias_soap_method
+ * @var array $soap_methods
+ * @var array $params
+ * @var array|string $result
+ */
+?>
 <form class="default" action="<?= $controller->url_for('admin/ilias_interface/soap_methods/'.$ilias_index) ?>" method="post">
     <? if ($result) : ?>
     <article class="studip">
@@ -37,4 +47,4 @@
             <?= Studip\Button::createAccept(_('Ausführen'), 'submit') ?>
         <? endif ?>
     </footer>
-</form>
\ No newline at end of file
+</form>
diff --git a/app/views/admin/install/index.php b/app/views/admin/install/index.php
index d6156d889ceb2d25973bf2a09587ddf00bbe9df6..a87776e6c269feef2e688f8d8290af56a32ea4c6 100644
--- a/app/views/admin/install/index.php
+++ b/app/views/admin/install/index.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var array $steps
+ */
+?>
 <h2><?= _('Willkommen beim Installationsassistenten für Stud.IP!') ?></h2>
 
 <p>
diff --git a/app/views/admin/install/install-basic.php b/app/views/admin/install/install-basic.php
index 688a86c525513a9e51b36baf4be26ceac7ba35ae..660907552b061853aac987b19b5e5e477f9de4a6 100644
--- a/app/views/admin/install/install-basic.php
+++ b/app/views/admin/install/install-basic.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var string $local_inc
+ * @var string $config_inc
+ */
+?>
 <h3><?= _('Installation') ?></h3>
 <dl>
     <dt><?= _('Datenbank') ?></dt>
diff --git a/app/views/admin/install/install.php b/app/views/admin/install/install.php
index f56a30bcdbbf52dd365ac641b81a3def3436c58b..ad4b193d1676443de54527f40f660977f34ed5c8 100644
--- a/app/views/admin/install/install.php
+++ b/app/views/admin/install/install.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var Admin_InstallController $controller
+ */
+?>
 <h3><?= _('Installation') ?></h3>
 <dl class="requests">
     <dt data-request-url="<?= $controller->link_for('install/sql') ?>" data-event-source="1">
diff --git a/app/views/admin/install/layout.php b/app/views/admin/install/layout.php
index 7f10064aa54d5c9ec567fb8abf06ba4d16228921..03e9a59f82ac400b8f53786e3a392845ab60d7e6 100644
--- a/app/views/admin/install/layout.php
+++ b/app/views/admin/install/layout.php
@@ -1,3 +1,20 @@
+<?php
+/**
+ * @var array $steps
+ * @var Admin_InstallController $controller
+ * @var int $current_step
+ * @var int $total_steps
+ * @var string $error
+ * @var string $content_for_layout
+ * @var string $button_label
+ * @var array $error_details
+ * @var bool $hide_back_button
+ * @var bool $valid
+ * @var int $previous_step
+ * @var int $next_step
+ * @var int $step
+ */
+?>
 <!DOCTYPE html>
 <html>
 <head>
diff --git a/app/views/admin/install/mysql.php b/app/views/admin/install/mysql.php
index dbc330455352de487f659d2095e5a781e3576a7f..eb726462d63c3cd88b78443bd77003b3b44b5aa1 100644
--- a/app/views/admin/install/mysql.php
+++ b/app/views/admin/install/mysql.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var int $valid
+ */
+?>
 <p>
     <?= _('In diesem Schritt verbinden Sie Ihre Stud.IP-Installation mit Ihrer '
         . 'bestehenden Datenbank.') ?>
diff --git a/app/views/admin/install/mysql_check.php b/app/views/admin/install/mysql_check.php
index 1b38f8bd255168bed24e679960171a98f54c9d61..7396ccfcd53f9803a8ed6520de03cb8484405faa 100644
--- a/app/views/admin/install/mysql_check.php
+++ b/app/views/admin/install/mysql_check.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var array $result
+ */
+?>
 <p>
     <?= _('In diesem Schritt wird geprüft, ob die Konfiguration der Datenbank '
         . 'korrekt ist.') ?>
diff --git a/app/views/admin/install/permissions.php b/app/views/admin/install/permissions.php
index 03c2b57e34916d60fc32a15c3f03181a4feca71d..75964f8869bba32ad693670cefdcb94d348e9036 100644
--- a/app/views/admin/install/permissions.php
+++ b/app/views/admin/install/permissions.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var array $writable
+ * @var array $requirements
+ * @var bool $valid
+ */
+?>
 <p>
     <?= _('In diesem Schritt wird geprüft, ob ausgewählte Datenverzeichnisse '
         . 'beschreibbar sind.') ?>
diff --git a/app/views/admin/install/php_check.php b/app/views/admin/install/php_check.php
index ea337f351eaed06556c0b74bbda69612cabe9238..b48d11698ad8151959f016f2b55adc32325e1401 100644
--- a/app/views/admin/install/php_check.php
+++ b/app/views/admin/install/php_check.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var array $result
+ */
+?>
 <p>
     <?= _('In diesem Schritt wird geprüft, ob die PHP-Konfiguration auf dem '
         . 'Server den Anforderungen von Stud.IP entspricht.') ?>
diff --git a/app/views/admin/install/prepare.php b/app/views/admin/install/prepare.php
index 9cf2694a97ab72f14e3d67e25f8214dc2064a354..bccb764dcd61c5f4bb91731e9c3373923ab4d1ac 100644
--- a/app/views/admin/install/prepare.php
+++ b/app/views/admin/install/prepare.php
@@ -1,3 +1,11 @@
+
+<?php
+/**
+ * @var array $files
+ * @var array $required
+ * @var array $defaults
+ */
+?>
 <p>
     <?= _('In diesem Schritt wählen Sie aus, welche Beispieldaten in Ihre '
         . 'Datenbank eingespielt werden und geben einige Grunddaten zur '
diff --git a/app/views/admin/licenses/edit.php b/app/views/admin/licenses/edit.php
index 6943a534d54851c9ef4ae0b63cb388006330819b..ce722c26e01381e060864dabdd28276841ab65b0 100644
--- a/app/views/admin/licenses/edit.php
+++ b/app/views/admin/licenses/edit.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_LicensesController $controller
+ * @var License $licenses
+ */
+?>
 <form action="<?= $controller->link_for("admin/licenses/store", ['identifier' => $license->getId()]) ?>"
       method="post"
       enctype="multipart/form-data"
diff --git a/app/views/admin/licenses/index.php b/app/views/admin/licenses/index.php
index ee545ce5fda5dd9a1f3f32e82945822a7788d1b0..9f13a6e99987469f60810303afbd0bc9a23bf17c 100644
--- a/app/views/admin/licenses/index.php
+++ b/app/views/admin/licenses/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_LicensesController $controller
+ * @var License[] $licenses
+ */
+?>
 <table class="default">
     <caption>
         <?= _("Lizenzen") ?>
@@ -14,7 +20,7 @@
         <? foreach ($licenses as $license) : ?>
         <tr>
             <td>
-                <?= LicenseAvatar::getAvatar($license['identifier'])->getImageTag(Avatar::MEDIUM) ?>
+                <?= LicenseAvatar::getAvatar($license['identifier'])->getImageTag() ?>
             </td>
             <td><?= htmlReady($license['identifier']) ?></td>
             <td>
@@ -28,13 +34,13 @@
             </td>
             <td class="actions">
                 <a href="<?= $controller->link_for("admin/licenses/edit", ['identifier' => $license['identifier']]) ?>" data-dialog>
-                    <?= Icon::create("edit", "clickable")->asImg(20, ['class' => "text-bottom"]) ?>
+                    <?= Icon::create("edit")->asImg(20, ['class' => "text-bottom"]) ?>
                 </a>
                 <form action="<?= $controller->link_for("admin/licenses/delete", ['identifier' => $license->getId()]) ?>"
                       method="post"
                       data-confirm="<?= _("Wirklich löschen?") ?>"
                       class="inline">
-                    <?= Icon::create("trash", "clickable")->asInput(20) ?>
+                    <?= Icon::create("trash")->asInput(20) ?>
                 </form>
             </td>
         </tr>
diff --git a/app/views/admin/lockrules/_form.php b/app/views/admin/lockrules/_form.php
index 319ecdc3c3f3a127f4f0b353c5d5defddc9e5d4e..c4ef11143bd7f87d4fb339d6449964e4d5dd1392 100644
--- a/app/views/admin/lockrules/_form.php
+++ b/app/views/admin/lockrules/_form.php
@@ -1,6 +1,15 @@
-<?
+<?php
 # Lifter010:
-use Studip\Button, Studip\LinkButton;
+
+/**
+ * @var string $action
+ * @var string $lock_rule_type
+ * @var LockRule $lock_rule
+ * @var array $rule_type_names
+ * @var array $lock_rule_permissions
+ * @var array $lock_config
+ */
+use Studip\Button;
 
 ?>
 <form action="<?= $action ?>" method="post" class="default">
@@ -57,9 +66,9 @@ use Studip\Button, Studip\LinkButton;
                     <?= htmlready($group_title) ?>
                 </caption>
                 <colgroup>
-                    <col width="70%">
-                    <col width="15%">
-                    <col width="15%">
+                    <col style="width: 70%">
+                    <col style="width: 15%">
+                    <col style="width: 15%">
                 </colgroup>
                 <thead>
                 <tr>
diff --git a/app/views/admin/lockrules/edit.php b/app/views/admin/lockrules/edit.php
index 87d0c8942e6bbfbcd612b54655277e001c77d0b7..d32c0485b2f49eb312f7f3e09b885e10a9814e95 100644
--- a/app/views/admin/lockrules/edit.php
+++ b/app/views/admin/lockrules/edit.php
@@ -1,4 +1,9 @@
-<?
+<?php
 # Lifter010: TODO
+
+/**
+ * @var Admin_LockrulesController $controller
+ * @var LockRule $lock_rule
+ */
 ?>
-<?= $this->render_partial('admin/lockrules/_form.php', ['action' => $this->controller->url_for('admin/lockrules/edit/' . $lock_rule->getId())]);
\ No newline at end of file
+<?= $this->render_partial('admin/lockrules/_form.php', ['action' => $controller->url_for('admin/lockrules/edit/' . $lock_rule->getId())]);
diff --git a/app/views/admin/lockrules/index.php b/app/views/admin/lockrules/index.php
index 9835b3b2ad65af5ae42631fc4913289f42ad623d..ee776d0df882a4ea0311a3e3fcf00fa37e123758 100644
--- a/app/views/admin/lockrules/index.php
+++ b/app/views/admin/lockrules/index.php
@@ -1,5 +1,12 @@
 <?php
 # Lifter010: TODO
+
+/**
+ * @var Admin_LockrulesController $controller
+ * @var array $rule_type_names
+ * @var string $lock_rule_type
+ * @var LockRule[] $lock_rules
+ */
 ?>
 
 <form method="post" class="default">
@@ -9,9 +16,9 @@
             <?= _('Sperrebenen für den Bereich:') ?> <?= $rule_type_names[$lock_rule_type]; ?>
         </caption>
         <colgroup>
-            <col width="30%">
-            <col width="50%">
-            <col width="20%">
+            <col style="width: 30%">
+            <col style="width: 50%">
+            <col style="width: 20%">
         </colgroup>
         <thead>
         <tr>
@@ -36,7 +43,7 @@
                     </td>
                     <td class="actions">
                         <a href="<?= $controller->url_for('admin/lockrules/edit/' . $rule->lock_id) ?>">
-                            <?= Icon::create('edit', 'clickable', ['title' => _('Diese Regel bearbeiten')])->asImg() ?>
+                            <?= Icon::create('edit', Icon::ROLE_CLICKABLE, ['title' => _('Diese Regel bearbeiten')])->asImg() ?>
                         </a>
 
                         <?
@@ -46,7 +53,7 @@
                         <? else : ?>
                             <? $msg = sprintf(_('Möchten Sie die Ebene %s löschen?'), $rule->name) ?>
                         <? endif ?>
-                        <?= Icon::create('trash', 'clickable', [
+                        <?= Icon::create('trash', Icon::ROLE_CLICKABLE, [
                                 'title' => _('Diese Regel löschen'),
                                 'style' => 'vertical-align: middle'
                             ])->asInput(['data-confirm'=>$msg,'formaction'=>$controller->url_for('admin/lockrules/delete/'.$rule->lock_id)]) ?>
diff --git a/app/views/admin/lockrules/new.php b/app/views/admin/lockrules/new.php
index b40667dbd6f99213c0cb6942412bf52fb24e8d33..9b997b9abca179afa35b6e8753a9b67e5457a27f 100644
--- a/app/views/admin/lockrules/new.php
+++ b/app/views/admin/lockrules/new.php
@@ -1,5 +1,8 @@
-<?
+<?php
 # Lifter010: TODO
-?>
-<?= $this->render_partial('admin/lockrules/_form.php', ['action' => $this->controller->url_for('admin/lockrules/new')]);
 
+/**
+ * @var Admin_LockrulesController $controller
+ */
+?>
+<?= $this->render_partial('admin/lockrules/_form.php', ['action' => $controller->url_for('admin/lockrules/new')]);
diff --git a/app/views/admin/login_style/index.php b/app/views/admin/login_style/index.php
index aa0c74a07894dfd13c4c27224dc8d4efc6aa3b87..195cc6a9fc7c398f54168a5e60a0359ec3a65b27 100644
--- a/app/views/admin/login_style/index.php
+++ b/app/views/admin/login_style/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var LoginBackground[] $pictures
+ * @var Admin_LoginStyleController $controller
+ */
+?>
 <? if (count($pictures) > 0) : ?>
     <table class="default">
         <caption>
@@ -60,5 +66,5 @@
         <? endforeach ?>
     </table>
 <? else : ?>
-    <?= PageLayout::postInfo(_('In Ihrem System sind leider keine Bilder für den Startbildschirm hinterlegt.')) ?>
+    <?= MessageBox::info(_('In Ihrem System sind leider keine Bilder für den Startbildschirm hinterlegt.')) ?>
 <? endif ?>
diff --git a/app/views/admin/login_style/newpic.php b/app/views/admin/login_style/newpic.php
index d2c92502e0afdff20110c573a2dca7f45c99f3f3..d5bc74a677c199c82538feacf30402782896de53 100644
--- a/app/views/admin/login_style/newpic.php
+++ b/app/views/admin/login_style/newpic.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var Admin_LoginStyleController $controller
+ */
+?>
 <form class="default" action="<?= $controller->link_for('admin/loginstyle/add') ?>" method="post" enctype="multipart/form-data">
     <fieldset>
         <legend>
diff --git a/app/views/admin/lti/edit.php b/app/views/admin/lti/edit.php
index 996b9f2688dcfe8fc622e75684dc040a56cab866..0473e86304671cde911f1caabeb809b058e96f15 100644
--- a/app/views/admin/lti/edit.php
+++ b/app/views/admin/lti/edit.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_LtiController $controller
+ * @var LtiTool $tool
+ */
+?>
 <form class="default" action="<?= $controller->link_for('admin/lti/save/' . $tool->id) ?>" method="post">
     <?= CSRFProtection::tokenTag() ?>
     <fieldset>
diff --git a/app/views/admin/lti/index.php b/app/views/admin/lti/index.php
index 919aae895a14bb3657e04ad24c1eec45af7b1e63..e40380cac0b60ec7f9881d18fe1eb46c27bd35af 100644
--- a/app/views/admin/lti/index.php
+++ b/app/views/admin/lti/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_LtiController $controller
+ * @var LtiTool[] $tools
+ */
+?>
 <form action="" method="post">
     <?= CSRFProtection::tokenTag() ?>
     <table class="default">
@@ -14,13 +20,15 @@
         </colgroup>
 
         <thead>
-            <th><?= _('Name der Anwendung') ?></th>
-            <th><?= _('URL der Anwendung') ?></th>
-            <th><?= _('Consumer-Key') ?></th>
-            <th><?= _('Links') ?></th>
-            <th class="actions">
-                <?= _('Aktionen') ?>
-            </th>
+            <tr>
+                <th><?= _('Name der Anwendung') ?></th>
+                <th><?= _('URL der Anwendung') ?></th>
+                <th><?= _('Consumer-Key') ?></th>
+                <th><?= _('Links') ?></th>
+                <th class="actions">
+                    <?= _('Aktionen') ?>
+                </th>
+            </tr>
         </thead>
 
         <tbody>
diff --git a/app/views/admin/oauth2/_clients.php b/app/views/admin/oauth2/_clients.php
index 0e3db8aaa3bc9a598af04bb87869f09fc80103af..1332b5aabe40c3e07633311c85896e9d0d6af5cb 100644
--- a/app/views/admin/oauth2/_clients.php
+++ b/app/views/admin/oauth2/_clients.php
@@ -1,12 +1,17 @@
-<?
-    $sidebar = Sidebar::get();
-    $actions = new ActionsWidget();
-    $actions->addLink(
-        _('OAuth2-Client hinzufügen'),
-        $controller->url_for('api/oauth2/clients/add'),
-        Icon::create('add')
-    );
-    $sidebar->addWidget($actions);
+<?php
+/**
+ * @var Admin_Oauth2Controller $controller
+ * @var Studip\OAuth2\Models\Client[] $clients
+ */
+
+$sidebar = Sidebar::get();
+$actions = new ActionsWidget();
+$actions->addLink(
+    _('OAuth2-Client hinzufügen'),
+    $controller->url_for('api/oauth2/clients/add'),
+    Icon::create('add')
+);
+$sidebar->addWidget($actions);
 ?>
 
 <? if (isset($clients) && count($clients)) { ?>
diff --git a/app/views/admin/oauth2/_notices.php b/app/views/admin/oauth2/_notices.php
index a67539c4e7c08f5f7ad52c9d467dfae05a2457c7..6f260089e1d088e3cfb5eac7fddf31fb641ad02b 100644
--- a/app/views/admin/oauth2/_notices.php
+++ b/app/views/admin/oauth2/_notices.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_Oauth2Controller $controller
+ * @var Studip\OAuth2\Models\Client[] $clients
+ */
+?>
 <? if (!isset($clients) || !count($clients)) { ?>
     <?= MessageBox::info(
         _('Es wurde noch kein OAuth2-Client erstellt.') .
diff --git a/app/views/admin/oauth2/_setup.php b/app/views/admin/oauth2/_setup.php
index 2469a1b63b221b20351569f01fd1a5f22ca96b52..9554d7f68dff89174a6e82bef356d4700e816724 100644
--- a/app/views/admin/oauth2/_setup.php
+++ b/app/views/admin/oauth2/_setup.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var  Studip\OAuth2\SetupInformation $setup
+ */
+?>
 <ul>
     <li>
         <? $privateKey = $setup->privateKey(); ?>
diff --git a/app/views/admin/oauth2/_setup_key.php b/app/views/admin/oauth2/_setup_key.php
index d1ee3229c99c8a4e83f8668d27a60d841541fbe4..26b56633864dbc174747477ee5769275fb80954a 100644
--- a/app/views/admin/oauth2/_setup_key.php
+++ b/app/views/admin/oauth2/_setup_key.php
@@ -1,5 +1,11 @@
 <?php
-    $checkmark = function (bool $checked): Icon {
+/**
+ * @var  Studip\OAuth2\KeyInformation $key
+ */
+
+?>
+<?php
+$checkmark = function (bool $checked): Icon {
         return $checked
              ? Icon::create('accept', Icon::ROLE_STATUS_GREEN)
              : Icon::create('decline', Icon::ROLE_STATUS_RED);
diff --git a/app/views/admin/overlapping/admin_info.php b/app/views/admin/overlapping/admin_info.php
index be3d68edd3396bf1b1b4fb7a1b7e1e0557ad657a..f340e7511190993cd0b7d9ca0f78f19d1c3a85da 100644
--- a/app/views/admin/overlapping/admin_info.php
+++ b/app/views/admin/overlapping/admin_info.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Course $course
+ * @var InstituteMember[] $admins
+ * @var ProfileController $controller
+ */
+?>
 <section class="contentbox">
     <header>
         <h1>
diff --git a/app/views/admin/overlapping/conflicts.php b/app/views/admin/overlapping/conflicts.php
index f12588f3091d52d93c07d16e7f7e8e5f7cccbf4b..3bf39b79a4dfe1b5b2b3b3bc4832dfada729aa17 100644
--- a/app/views/admin/overlapping/conflicts.php
+++ b/app/views/admin/overlapping/conflicts.php
@@ -1,3 +1,13 @@
+<?php
+/**
+ * @var Admin_OverlappingController $controller
+ * @var SimpleORMapCollection $conflicts
+ * @var SeminarCycleDate $cycle
+ * @var Modul $base_modul
+ * @var Semester $selected_semester
+ * @var Modulteil $modulteil
+ */
+?>
 <? $comp_abs = $conflicts->findBy('base_metadate_id', $cycle->id)->pluck('comp_abschnitt_id') ?>
 <? $comp_versions = StgteilVersion::findBySQL('INNER JOIN `mvv_stgteilabschnitt` USING (`version_id`) WHERE `abschnitt_id` IN (?) GROUP BY `version_id`', [$comp_abs]); ?>
 <? foreach ($comp_versions as $comp_version) : ?>
@@ -93,4 +103,4 @@
     <? endforeach; ?>
     </ul>
 </li>
-<? endforeach; ?> 
\ No newline at end of file
+<? endforeach; ?> 
diff --git a/app/views/admin/overlapping/courses.php b/app/views/admin/overlapping/courses.php
index fe1e5a86ce68779a6748a6270f62edfce98e3254..ef6b9d7ef760bfdd7cef9c91a85418163a7e50f2 100644
--- a/app/views/admin/overlapping/courses.php
+++ b/app/views/admin/overlapping/courses.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var Admin_OverlappingController $controller
+ * @var SimpleORMapCollection $conflicts
+ * @var Modul $modul
+ * @var Semester $selected_semester
+ * @var Modulteil $modulteil
+ */
+?>
 <? foreach ($modulteil->lvgruppen as $lvgruppe) : ?>
     <? foreach ($lvgruppe->getAssignedCoursesBySemester($selected_semester->id, false) as $course) : ?>
         <? $course_obj = Course::find($course['seminar_id']) ?>
diff --git a/app/views/admin/overlapping/index.php b/app/views/admin/overlapping/index.php
index 821268f96ac84d861a2130509ed1091e27fad2e0..892a198b9265234dd724944e21aa74d307b1d4b9 100644
--- a/app/views/admin/overlapping/index.php
+++ b/app/views/admin/overlapping/index.php
@@ -1,7 +1,14 @@
+<?php
+/**
+ * @var SimpleORMapCollection $conflicts
+ * @var array $semtypes
+ * @var array $fachsems
+ */
+?>
 <?= $this->render_partial('admin/overlapping/selection', ['fachsems' => $fachsems, 'semtypes' => $semtypes]) ?>
 <? if (count($conflicts)) : ?>
     <?= $this->render_partial('admin/overlapping/overlapping') ?>
 <? endif; ?>
 <script>
     STUDIP.Overlapping.init();
-</script>
\ No newline at end of file
+</script>
diff --git a/app/views/admin/overlapping/modul.php b/app/views/admin/overlapping/modul.php
index e075b83f0b4c839ff189cefe43dba0c80cb03f0d..fe9d4832423a9b2d5afc068ea157d98caa623b85 100644
--- a/app/views/admin/overlapping/modul.php
+++ b/app/views/admin/overlapping/modul.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var SimpleORMapCollection $conflicts
+ * @var Modul $modul
+ * @var StgteilAbschnitt $abschnitt
+ */
+?>
 <?= Icon::create('log', Icon::ROLE_INFO); ?> <?= htmlReady($modul->getDisplayName()); ?>
 <ul>
     <? foreach ($modul->modul->modulteile->findBy('id', $conflicts->pluck('base_modulteil_id')) as $modulteil) : ?>
diff --git a/app/views/admin/overlapping/overlapping.php b/app/views/admin/overlapping/overlapping.php
index 03b35e1c3ccfc89c81a64c659ec5dc351ce7d1e0..328122a27836c9a33d953b58e0bcc112150e93df 100644
--- a/app/views/admin/overlapping/overlapping.php
+++ b/app/views/admin/overlapping/overlapping.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var SimpleORMapCollection $conflicts
+ * @var StgteilVersion $base_version
+ */
+?>
 <h1>
     <?= Icon::create('category', Icon::ROLE_INFO)->asImg() ?>
     <?= htmlReady($base_version->getDisplayName()); ?>
@@ -28,4 +34,4 @@
         <? endforeach; ?>
     </article>
     <? endforeach; ?>
-</section>
\ No newline at end of file
+</section>
diff --git a/app/views/admin/overlapping/selection.php b/app/views/admin/overlapping/selection.php
index 1c27c791ca95b5b897dee242a435e8fbf0504266..18b1aef01e09633b014d52a317490fd20ce236b2 100644
--- a/app/views/admin/overlapping/selection.php
+++ b/app/views/admin/overlapping/selection.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var Admin_OverlappingController $controller
+ * @var array $fachsems
+ * @var array $semtypes
+ * @var StgteilVersion $base_version
+ * @var StgteilVersion[] $comp_versions
+ */
+?>
 <form method="post" class="default collapsable mvv-ovl-selection" action="<?= $controller->url_for('admin/overlapping/check') ?>">
     <fieldset>
         <legend>
diff --git a/app/views/admin/plugin/activation-error-form.php b/app/views/admin/plugin/activation-error-form.php
index cd9b8b9be0803e92cb5b7e30ec57f01cb3dd4a22..30764171cee45c44aee33928f6a2aca4c2ca08fe 100644
--- a/app/views/admin/plugin/activation-error-form.php
+++ b/app/views/admin/plugin/activation-error-form.php
@@ -1,4 +1,11 @@
 <?php
+/**
+ * @var Admin_PluginController $controller
+ * @var array $memory
+ * @var array $errors
+ */
+?>
+<?php
 $aggregated = array_sum($memory);
 if (!$aggregated) {
     $question = _('Markierte Plugins dennoch deaktivieren');
diff --git a/app/views/admin/plugin/edit_automaticupdate.php b/app/views/admin/plugin/edit_automaticupdate.php
index 066b1b32fbfca6c94258a6b1bec46bfdd19c3e21..2831427e88a19200cb76d9f681643aba5e2d66cd 100644
--- a/app/views/admin/plugin/edit_automaticupdate.php
+++ b/app/views/admin/plugin/edit_automaticupdate.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_PluginController $controller
+ * @var array $plugin
+ */
+?>
 <?
 if (mb_strpos($_SERVER['SERVER_NAME'], ':') !== false) {
     list($_SERVER['SERVER_NAME'], $_SERVER['SERVER_PORT']) =
diff --git a/app/views/admin/plugin/index.php b/app/views/admin/plugin/index.php
index 26da74fe21f6cee3d92d967be87f96c5f4ae15b8..1d51d8de08d1098dae1954590bcc749edc950011 100644
--- a/app/views/admin/plugin/index.php
+++ b/app/views/admin/plugin/index.php
@@ -1,5 +1,13 @@
-<?
+<?php
 # Lifter010: TODO
+/**
+ * @var Admin_PluginController $controller
+ * @var array $num_updates
+ * @var array $plugins
+ * @var array $plugin_types
+ * @var string $plugin_filter
+ * @var string $core_filter
+ */
 use Studip\Button, Studip\LinkButton;
 
 ?>
diff --git a/app/views/admin/plugin/manifest.php b/app/views/admin/plugin/manifest.php
index 2c9c72d31010d0fb4186c3e1965701c1bdc6bd93..7ecc6e4a7453d11dfc9d6c41bfda6e8748b0f0f7 100644
--- a/app/views/admin/plugin/manifest.php
+++ b/app/views/admin/plugin/manifest.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var array $plugin
+ * @var array $manifest
+ */
+?>
 <dl>
     <dt><?= _('Name') ?></dt>
     <dd><?= htmlReady($plugin['name']) ?></dd>
diff --git a/app/views/admin/plugin/search.php b/app/views/admin/plugin/search.php
index 413cd68454d32642a53a0afc0901a98b24033142..ef79ae13b485bbf4eee0c562efb6761ede6de404 100644
--- a/app/views/admin/plugin/search.php
+++ b/app/views/admin/plugin/search.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_PluginController $controller
+ * @var array $search_results
+ * @var string $search
+ * @var array $errors
+ */
+?>
 <? if (!$search_results): ?>
     <?= MessageBox::info(_('Es wurden keine Plugins gefunden.')) ?>
 <? else: ?>
diff --git a/app/views/admin/plugin/unregistered.php b/app/views/admin/plugin/unregistered.php
index 3600ee1e8b63c7da8de886f8f854447ffb0c9a22..8d0b3db41c08395923fa36622f5c9fbcb9874045 100644
--- a/app/views/admin/plugin/unregistered.php
+++ b/app/views/admin/plugin/unregistered.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_PluginController $controller
+ * @var array $unknown_plugins
+ */
+?>
 <table class="default">
     <caption>
         <?= _('Im Pluginverzeichnis vorhandene Plugins registrieren') ?>
diff --git a/app/views/admin/plugin/update_info.php b/app/views/admin/plugin/update_info.php
index fba04031ae041490ec9a09aebab14d9acff4278d..9b6a42f241a05b2ad7b8c3fc2c24980573ffcced 100644
--- a/app/views/admin/plugin/update_info.php
+++ b/app/views/admin/plugin/update_info.php
@@ -1,6 +1,10 @@
-<?
+<?php
 # Lifter010: TODO
-use Studip\Button, Studip\LinkButton;
+/**
+ * @var Admin_PluginController $controller
+ * @var array $plugins
+ */
+use Studip\Button;
 
 ?>
 <?= sprintf(ngettext('Es ist ein Update für ein Plugin verfügbar', 'Es sind Updates für %d Plugins verfügbar', $num_updates), $num_updates) ?>
diff --git a/app/views/admin/plugin/upload-drag-and-drop.php b/app/views/admin/plugin/upload-drag-and-drop.php
index 35ab11bcfca27669be3ebb5e923d50bb7aae0c7f..1cdac24b5120ef934a69ce6fd7a4c8dda5b7c77d 100644
--- a/app/views/admin/plugin/upload-drag-and-drop.php
+++ b/app/views/admin/plugin/upload-drag-and-drop.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var Admin_PluginController $controller
+ */
+?>
 <form action="<?= $controller->url_for('admin/plugin/install') ?>"
       method="post" enctype="multipart/form-data" class="drag-and-drop">
     <?= CSRFProtection::tokenTag() ?>
diff --git a/app/views/admin/role/add.php b/app/views/admin/role/add.php
index e03c8c440594ea9030f0169c08657b8be65feea1..82bdb0d86288844af0ff1e1c6cd21a25537a4245 100644
--- a/app/views/admin/role/add.php
+++ b/app/views/admin/role/add.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var Admin_RoleController $controller
+ */
+?>
 <form action="<?= $controller->url_for('admin/role/add') ?>" method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
     <input type="hidden" name="studip_ticket" value="<?= get_ticket() ?>">
diff --git a/app/views/admin/role/add_plugin.php b/app/views/admin/role/add_plugin.php
index 084b4fc4dbfbf966f81ce23e73d76a8b618d1d0d..5e3d8fd4a9930e91fe957a8bfe60b5486b2c249a 100644
--- a/app/views/admin/role/add_plugin.php
+++ b/app/views/admin/role/add_plugin.php
@@ -1,4 +1,9 @@
 <?php
+/**
+ * @var Admin_RoleController $controller
+ * @var string $role_id
+ * @var array $plugins
+ */
 use Studip\Button;
 use Studip\LinkButton;
 ?>
diff --git a/app/views/admin/role/assign_plugin_role.php b/app/views/admin/role/assign_plugin_role.php
index 779511bd00b1174beb0525612b34b2c4b58f81f9..18ff2cc059278c9f7a2b70a26fb581c293cf3595 100644
--- a/app/views/admin/role/assign_plugin_role.php
+++ b/app/views/admin/role/assign_plugin_role.php
@@ -1,6 +1,13 @@
-<?
+<?php
 # Lifter010: TODO
-use Studip\Button, Studip\LinkButton;
+/**
+ * @var Admin_RoleController $controller
+ * @var string $pluginid
+ * @var array $plugins
+ * @var Role[] $roles
+ * @var Role[] $assigned
+ */
+use Studip\Button;
 ?>
 
 <form action="<?= $controller->url_for('admin/role/assign_plugin_role') ?>" method="POST" class="default">
diff --git a/app/views/admin/role/assign_role.php b/app/views/admin/role/assign_role.php
index 031e95acda84a6029eeeda6c73fa2e6bb08aa92d..b82b451421904c491f528cb008421340acb7fcf6 100644
--- a/app/views/admin/role/assign_role.php
+++ b/app/views/admin/role/assign_role.php
@@ -1,5 +1,15 @@
-<?
+<?php
 # Lifter010: TODO
+/**
+ * @var Admin_RoleController $controller
+ * @var string $username
+ * @var User $currentuser
+ * @var User[] $users
+ * @var Role[] $assignedroles
+ * @var Role[] $roles
+ * @var Role[] $all_userroles
+ * @var array $assignedroles_institutes
+ */
 use Studip\Button, Studip\LinkButton;
 ?>
 
diff --git a/app/views/admin/role/assign_role_institutes.php b/app/views/admin/role/assign_role_institutes.php
index 997a3b8e1b66f0acb397ffc9ed36b5414d1949a0..4afc617ab2f64981c9c52ec71f57bbb75334a3fa 100644
--- a/app/views/admin/role/assign_role_institutes.php
+++ b/app/views/admin/role/assign_role_institutes.php
@@ -1,7 +1,12 @@
-<? foreach(PageLayout::getMessages() as $pm) : ?>
-    <?= $pm ?>
-<? endforeach; ?>
-
+<?php
+/**
+ * @var Admin_RoleController $controller
+ * @var Role $role
+ * @var User $user
+ * @var QuickSearch $qsearch
+ * @var Institute[] $institutes
+ */
+?>
 <form action="<?= $controller->action_link('assign_role_institutes/' . $role->getRoleid() . '/' . $user->id) ?>" method="post" class="default" data-dialog="size=auto;reload-on-close">
     <fieldset>
         <legend>
diff --git a/app/views/admin/role/index.php b/app/views/admin/role/index.php
index 4ebd0c4af9c4c0573f178f8ff93b6a7340e90163..fcb035334080cb01b687a86c0f78af0b851c50c5 100644
--- a/app/views/admin/role/index.php
+++ b/app/views/admin/role/index.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_RoleController $controller
+ * @var Role[] $roles
+ * @var array $stats
+ */
+?>
 <table class="default">
     <caption>
         <?= _('Vorhandene Rollen') ?>
diff --git a/app/views/admin/role/show_role.php b/app/views/admin/role/show_role.php
index ba91fc5e30477c35699d3ce09e47a0d2698af987..e01a952cdb33cbf5d6cadb506dd9e9731b817100 100644
--- a/app/views/admin/role/show_role.php
+++ b/app/views/admin/role/show_role.php
@@ -1,6 +1,15 @@
-<?
+<?php
 # Lifter010: TODO
-use Studip\Button, Studip\LinkButton;
+/**
+ * @var Admin_RoleController $controller
+ * @var string $roleid
+ * @var Role[] $roles
+ * @var QuickSearch $mps
+ * @var array $users
+ * @var array $plugins
+ * @var int $implicit_count
+ */
+use Studip\Button;
 ?>
 
 <form action="<?= $controller->url_for('admin/role/show_role') ?>" method="get" class="default inline">
@@ -38,12 +47,12 @@ use Studip\Button, Studip\LinkButton;
 
     <table class="default" id="role-users">
         <colgroup>
-            <col width="20px">
-            <col width="3%">
-            <col width="33%">
-            <col width="5%">
+            <col style="width: 20px">
+            <col style="width: 3%">
+            <col style="width: 33%">
+            <col style="width: 5%">
             <col>
-            <col width="24px">
+            <col style="width: 24px">
         </colgroup>
         <caption>
             <?= sprintf(
@@ -150,11 +159,11 @@ use Studip\Button, Studip\LinkButton;
             </div>
         </caption>
         <colgroup>
-            <col width="20px">
-            <col width="3%">
-            <col width="38%">
+            <col style="width: 20px">
+            <col style="width: 3%">
+            <col style="width: 38%">
             <col>
-            <col width="24px">
+            <col style="width: 24px">
         </colgroup>
         <thead>
             <tr>
diff --git a/app/views/admin/sem_classes/_sem_type.php b/app/views/admin/sem_classes/_sem_type.php
index 6928df10ae734fbb7baa8442a9f3f5a4fd41f274..2a5c53e98d8f41fd66681049aa4d02ecddbf0264 100644
--- a/app/views/admin/sem_classes/_sem_type.php
+++ b/app/views/admin/sem_classes/_sem_type.php
@@ -1,13 +1,16 @@
 <?php
 
-/*
+/**
  *  Copyright (c) 2012  Rasmus Fuhse <fuhse@data-quest.de>
  * 
  *  This program is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU General Public License as
  *  published by the Free Software Foundation; either version 2 of
  *  the License, or (at your option) any later version.
+ *
+ * @var SemType $sem_type
  */
+
 $number_of_seminars = $sem_type->countSeminars();
 $id = $sem_type['id'];
 ?>
@@ -23,9 +26,9 @@ $id = $sem_type['id'];
             <input type="text" value="<?= htmlReady($sem_type['name']) ?>">
         </span>
     </span>
-    (<?= sprintf(_("%s Veranstaltungen"), $number_of_seminars ? $number_of_seminars : _("keine")) ?>)
+    (<?= sprintf(_("%s Veranstaltungen"), $number_of_seminars ?: _("keine")) ?>)
     <a href="#" class="sem_type_edit" onClick="jQuery(this).closest('li').find('.name_container').children().toggle().find('input').focus(); return false;" title="<?= _("Veranstaltungstyp umbenennen") ?>"><?= Icon::create('edit', 'clickable')->asImg(['class' => "text-bottom"]) ?></a>
     <? if ($number_of_seminars == 0) : ?>
         <a href="#" class="sem_type_delete" onClick="return false;" title="<?= _("Veranstaltungstyp löschen") ?>"><?= Icon::create('trash', 'clickable')->asImg(['class' => "text-bottom"]) ?></a>
     <? endif ?>
-</li>
\ No newline at end of file
+</li>
diff --git a/app/views/admin/sem_classes/content_plugin.php b/app/views/admin/sem_classes/content_plugin.php
index 7a9cffe45141b5ffe27e9157a5ef3246cb33611f..5cbe039a0566f25c8d04173a1ff0fd1003b5283e 100644
--- a/app/views/admin/sem_classes/content_plugin.php
+++ b/app/views/admin/sem_classes/content_plugin.php
@@ -1,12 +1,16 @@
 <?php
 
-/*
+/**
  *  Copyright (c) 2012  Rasmus Fuhse <fuhse@data-quest.de>
  * 
  *  This program is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU General Public License as
  *  published by the Free Software Foundation; either version 2 of
  *  the License, or (at your option) any later version.
+ * @var array $plugin
+ * @var string $sticky
+ * @var string $plugin_id
+ * @var string $activated
  */
 ?>
 <div class="plugin<?= ($plugin['enabled'] ? "" : " deactivated").(is_numeric($plugin['id']) ? "" : " core").($sticky ? " sticky" : "") ?>" id="plugin_<?= $plugin_id ?>" <?= $plugin['enabled'] ? "" : ' title="'._("Plugin ist momentan global deaktiviert.").'"' ?>>
diff --git a/app/views/admin/sem_classes/details.php b/app/views/admin/sem_classes/details.php
index 2496473decc96303f4f5c126d0c9fd1c328d7978..6cbfed3eb56303d413e40345addbaecae9ee145c 100644
--- a/app/views/admin/sem_classes/details.php
+++ b/app/views/admin/sem_classes/details.php
@@ -1,12 +1,16 @@
 <?php
 
-/*
+/**
  *  Copyright (c) 2012  Rasmus Fuhse <fuhse@data-quest.de>
  *
  *  This program is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU General Public License as
  *  published by the Free Software Foundation; either version 2 of
  *  the License, or (at your option) any later version.
+ *
+ * @var string $overview_url
+ * @var array $sem_class
+ * @var array $modules
  */
 
 ?>
diff --git a/app/views/admin/sem_classes/overview.php b/app/views/admin/sem_classes/overview.php
index 20c5efc77863d2f4269f55d0727db0835d24e621..8cbb0fb460c19bf9dc2826c17fb11d7fa419188f 100644
--- a/app/views/admin/sem_classes/overview.php
+++ b/app/views/admin/sem_classes/overview.php
@@ -1,12 +1,14 @@
 <?php
 
-/*
+/**
  *  Copyright (c) 2012  Rasmus Fuhse <fuhse@data-quest.de>
  *
  *  This program is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU General Public License as
  *  published by the Free Software Foundation; either version 2 of
  *  the License, or (at your option) any later version.
+ *
+ * @var Admin_SemClassesController $controller
  */
 ?>
 <table class="default">
diff --git a/app/views/admin/semester/edit.php b/app/views/admin/semester/edit.php
index f92a19a883cd9b172cd11071415cfdaa69c4d1f4..1a40d23c17d1b18275663d9eb383f8ad5f22ff87 100644
--- a/app/views/admin/semester/edit.php
+++ b/app/views/admin/semester/edit.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_SemesterController $controller
+ * @var Semester $semester
+ */
+?>
 <form method="post" action="<?= $controller->url_for('admin/semester/edit/' . $semester->id) ?>" data-dialog="size=auto" class="default">
     <?= CSRFProtection::tokenTag() ?>
 
diff --git a/app/views/admin/semester/index.php b/app/views/admin/semester/index.php
index b8bf06f687a4a56faa9b2e4e43bcff3898c3eede..1fc87a749e1e1cf6d14cfd0c8f62bd38cc182f0f 100644
--- a/app/views/admin/semester/index.php
+++ b/app/views/admin/semester/index.php
@@ -1,16 +1,23 @@
+<?php
+/**
+ * @var Admin_SemesterController $controller
+ * @var Semester[] $semesters
+ * @var string $filter
+ */
+?>
 <form action="<?= $controller->url_for('admin/semester/delete/bulk') ?>" method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
 
 <table class="default" id="semesters">
     <caption><?= _('Semester') ?></caption>
     <colgroup>
-        <col width="20px">
+        <col style="width: 20px">
         <col>
-        <col width="10%">
-        <col width="15%">
-        <col width="15%">
-        <col width="20%">
-        <col width="48px">
+        <col style="width: 10%">
+        <col style="width: 15%">
+        <col style="width: 15%">
+        <col style="width: 20%">
+        <col style="width: 48px">
     </colgroup>
     <thead>
         <tr>
diff --git a/app/views/admin/semester/lock.php b/app/views/admin/semester/lock.php
index 7f0109fd1fa140f60377b4fa00c5459f0c9c17f6..c33913940c8acd9663c7815c0c597db833d20b38 100644
--- a/app/views/admin/semester/lock.php
+++ b/app/views/admin/semester/lock.php
@@ -1,4 +1,12 @@
-<form class="default" action="<?= $controller->link_for("admin/semester/lock/{$id}") ?>" method="post" data-dialog="size=auto" class="default">
+<?php
+/**
+ * @var Admin_SemesterController $controller
+ * @var Semester[] $semesters
+ * @var string $id
+ * @var LockRule[] $all_lock_rules
+ */
+?>
+<form class="default" action="<?= $controller->link_for("admin/semester/lock/{$id}") ?>" method="post" data-dialog="size=auto">
 
     <fieldset>
         <legend><?= _('Berechtigungen') ?></legend>
diff --git a/app/views/admin/smileys/edit.php b/app/views/admin/smileys/edit.php
index 32c21e726db218e636b850def58a2bb4a1b23c7a..ebe988307d72d581ce7647bb264a97c739dab42c 100644
--- a/app/views/admin/smileys/edit.php
+++ b/app/views/admin/smileys/edit.php
@@ -1,21 +1,28 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var Admin_SmileysController $controller
+ * @var Smiley $smiley
+ * @var string $view
+ */
+use Studip\Button, Studip\LinkButton;
+?>
 
 <form action="<?= $controller->url_for('admin/smileys/edit', $smiley->id, $view) ?>"
       method="post" enctype="multipart/form-data">
     <?= CSRFProtection::tokenTag() ?>
 
-    <table align="center" cellpadding="2" cellspacing="0">
+    <table class="default">
         <thead class="hide-in-dialog">
             <tr>
                 <th colspan="2"><b><?= _('Smiley bearbeiten') ?></b></th>
             </tr>
         </thead>
         <tbody>
-            <tr class="table_row_even">
+            <tr>
                 <td><?= _('Smiley:')?></td>
                 <td align="center"><?= $smiley->getImageTag() ?></td>
             </tr>
-            <tr class="table_row_odd">
+            <tr>
                 <td>
                     <label for="name"><?= _('Name')?></label>
                 </td>
@@ -26,7 +33,7 @@
                     <small><?= _('Erlaubte Zeichen:') ?> a-z 0-9 &ndash; _</small>
                 </td>
             </tr>
-            <tr class="table_row_even">
+            <tr>
                 <td>
                     <label for="short"><?= _('Kürzel')?></label>
                 </td>
@@ -35,11 +42,11 @@
                            value="<?= Request::option('short', $smiley->short) ?>">
                 </td>
             </tr>
-            <tr class="table_row_odd">
+            <tr>
                 <td><?= _('Erstellt') ?></td>
                 <td><?= date('d.m.Y H:i:s', $smiley->mkdate) ?></td>
             </tr>
-            <tr class="table_row_even">
+            <tr>
                 <td><?= _('Geändert') ?></td>
                 <td><?= date('d.m.Y H:i:s', $smiley->chdate) ?></td>
             </tr>
@@ -53,6 +60,4 @@
             </tr>
         </tfoot>
     </table>
-
-    <br>
 </form>
diff --git a/app/views/admin/smileys/index.php b/app/views/admin/smileys/index.php
index 2391ddda6115af07e6ee2c06cdbd7c4d3d3c60ed..44a51f77ede5afb54d6e590c654f4ec18a67d526 100644
--- a/app/views/admin/smileys/index.php
+++ b/app/views/admin/smileys/index.php
@@ -1,20 +1,26 @@
-<? use Studip\Button; ?>
-
+<?php
+/**
+ * @var Admin_SmileysController $controller
+ * @var bool $favorites_enabled
+ * @var string $view
+ * @var Smiley[] $smileys
+ */
+?>
 <form action="<?= $controller->action_link('admin/smileys/delete/bulk', $view) ?>" method="post">
     <?= CSRFProtection::tokenTag() ?>
 
     <table class="default">
         <colgroup>
-            <col width="20px">
+            <col style="width: 20px">
             <col>
             <col>
-            <col width="50px">
+            <col style="width: 50px">
             <col>
-            <col width="50px">
+            <col style="width: 50px">
         <? if ($favorites_enabled): ?>
-            <col width="50px">
+            <col style="width: 50px">
         <? endif; ?>
-            <col width="50px">
+            <col style="width: 50px">
         </colgroup>
         <thead>
             <tr>
@@ -33,7 +39,7 @@
     <? if (empty($smileys)): ?>
         <tbody>
             <tr>
-                <td align="center" class="blank" colspan="<?= $favorites_enabled ? 8 : 7 ?>">
+                <td class="blank" colspan="<?= $favorites_enabled ? 8 : 7 ?>">
                     <?= _('Keine Smileys vorhanden.') ?>
                 </td>
             </tr>
@@ -50,7 +56,7 @@
                 <td class="separator"><?= htmlReady($smiley->short) ?></td>
                 <td><?= $smiley->short_count ?></td>
             <? else: ?>
-                <td class="separator" colspan="2" align="center">-</td>
+                <td class="separator" colspan="2">-</td>
             <? endif; ?>
             <? if ($favorites_enabled): ?>
                 <td class="separator"><?= $smiley->fav_count ?></td>
@@ -59,11 +65,11 @@
                     <a href="<?= $controller->url_for('admin/smileys/edit', $smiley->id, $view) ?>"
                        title="<?= htmlReady(sprintf(_('Smiley "%s" bearbeiten'), $smiley->name)) ?>"
                        data-dialog="size=auto">
-                        <?= Icon::create('edit', 'clickable')->asImg() ?>
+                        <?= Icon::create('edit') ?>
                     </a>
                     <a href="<?= $controller->url_for('admin/smileys/delete', $smiley->id, $view) ?>"
                        title="<?= htmlReady(sprintf(_('Smiley "%s" löschen'), $smiley->name)) ?>">
-                        <?= Icon::create('trash', 'clickable')->asImg() ?>
+                        <?= Icon::create('trash') ?>
                     </a>
                 </td>
             </tr>
diff --git a/app/views/admin/smileys/statistics.php b/app/views/admin/smileys/statistics.php
index e134b493c4844fa1231c29f811fca46a111421dd..bdef01721fec03faad6b23b593d4d7feb757bcaa 100644
--- a/app/views/admin/smileys/statistics.php
+++ b/app/views/admin/smileys/statistics.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var int $count_all
+ * @var int $count_used
+ * @var int $sum
+ * @var int $last_change
+ */
+?>
 <dl class="smiley-statistics">
     <dt><?= _('Vorhanden') ?></dt>
     <dd><?= $count_all ?></dd>
diff --git a/app/views/admin/smileys/upload.php b/app/views/admin/smileys/upload.php
index 5dc2c13a0bae519f7fef0923059ddb7e62f8dfc6..c0d6c6bf722ab19a6f0422c29637890924499285 100644
--- a/app/views/admin/smileys/upload.php
+++ b/app/views/admin/smileys/upload.php
@@ -1,17 +1,23 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var Admin_SmileysController $controller
+ * @var string $view
+ */
 
+use Studip\Button, Studip\LinkButton;
+?>
 <form action="<?= $controller->url_for('admin/smileys/upload', $view) ?>"
       method="post" enctype="multipart/form-data">
     <?= CSRFProtection::tokenTag() ?>
 
-    <table align="center" cellpadding="2" cellspacing="0">
+    <table class="default">
         <thead class="hide-in-dialog">
             <tr>
                 <th colspan="2"><b><?= _('Neues Smiley hochladen') ?></b></th>
             </tr>
         </thead>
         <tbody>
-            <tr class="table_row_odd">
+            <tr>
                 <td>
                     <label for="replace"><?= _('existierende Datei überschreiben') ?></label>
                 </td>
@@ -19,7 +25,7 @@
                     <input type="checkbox" id="replace" name="replace" value="1">
                 </td>
             </tr>
-            <tr class="table_row_even">
+            <tr>
                 <td>
                     <label for="file"><?= _('Bilddatei auswählen') ?></label>
                 </td>
diff --git a/app/views/admin/specification/_field.php b/app/views/admin/specification/_field.php
index 6f089ea0867b45a392ec9dd8d127ef562f441d07..05ea09f60734da0cd0808b81804078ffdf29a92a 100644
--- a/app/views/admin/specification/_field.php
+++ b/app/views/admin/specification/_field.php
@@ -1,4 +1,9 @@
 <?php
+/**
+ * @var string $name
+ * @var string $id
+ * @var array $rule
+ */
 $fields = Request::getArray('fields');
 $order  = Request::getArray('order');
 ?>
diff --git a/app/views/admin/specification/edit.php b/app/views/admin/specification/edit.php
index e8031714060cef78a420be14329a5e4d27b530c0..30bee490d5de25958237b3c86da4fb00051f3ca1 100644
--- a/app/views/admin/specification/edit.php
+++ b/app/views/admin/specification/edit.php
@@ -1,7 +1,14 @@
-<?
+<?php
 # Lifter010: TODO
-use Studip\Button, Studip\LinkButton;
 
+/**
+ * @var Admin_SpecificationController $controller
+ * @var AuxLockRules $rule
+ * @var array $semFields
+ * @var DataField[] $entries_semdata
+ * @var DataField[] $entries_user
+ */
+use Studip\Button, Studip\LinkButton;
 ?>
 <? if (isset($flash['error'])) : ?>
     <?= MessageBox::error($flash['error'], $flash['error_detail']) ?>
diff --git a/app/views/admin/specification/index.php b/app/views/admin/specification/index.php
index 6fbf71185c4ffa56308175c31b9c3b1ae6fa1553..38ec459e8c5e86f8ef63e6a489052c1dc4798089 100644
--- a/app/views/admin/specification/index.php
+++ b/app/views/admin/specification/index.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_SpecificationController $controller
+ * @var AuxLockRules[] $allrules
+ */
+?>
 <form method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
     <table class="default">
@@ -5,9 +11,9 @@
             <?= _('Verwaltung von Zusatzangaben') ?>
         </caption>
         <colgroup>
-            <col width="45%">
-            <col width="45%">
-            <col width="10%">
+            <col style="width: 45%">
+            <col style="width: 45%">
+            <col style="width: 10%">
         </colgroup>
         <thead>
             <tr>
diff --git a/app/views/admin/statusgroups/_edit_subgroupselect.php b/app/views/admin/statusgroups/_edit_subgroupselect.php
index 29688963d6ababb508cba0ef5f2ba1619fd7eba5..6963ea115853d08a9d772430f3c513135b947b2f 100644
--- a/app/views/admin/statusgroups/_edit_subgroupselect.php
+++ b/app/views/admin/statusgroups/_edit_subgroupselect.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_StatusgroupsController $controller
+ * @var int $level
+ * @var string $preset
+ * @var Statusgruppen[] $groups
+ */
+?>
 <? foreach ($groups as $group): ?>
     <? if ($selected->id == $group->id) continue; ?>
     <option value="<?= $group->id ?>" <? if ($group->id == $selected->range_id) echo 'selected'; ?> <? if ($level > 0): ?> class="nested-item nested-item-level-<?= $level ?>"<? endif; ?>>
@@ -6,4 +14,4 @@
     <? if($group->children): ?>
         <?= $this->render_partial("admin/statusgroups/_edit_subgroupselect.php", ['groups' => $group->children, 'selected' => $selected, 'level' => $level + 1]) ?>
     <? endif; ?>
-<? endforeach; ?>
\ No newline at end of file
+<? endforeach; ?>
diff --git a/app/views/admin/statusgroups/_group-nestable.php b/app/views/admin/statusgroups/_group-nestable.php
index 982447e73015aa474430d00ba911f427819b68da..a3e1979d6651389aadf54f0c05e569c34c78fdd9 100644
--- a/app/views/admin/statusgroups/_group-nestable.php
+++ b/app/views/admin/statusgroups/_group-nestable.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var Statusgruppen[] $groups
+ */
+?>
 <? if ($groups): ?>
     <ol class="dd-list">
     <? foreach ($groups as $group): ?>
@@ -7,4 +12,4 @@
         </li>
     <? endforeach; ?>
     </ol>
-<? endif; ?>
\ No newline at end of file
+<? endif; ?>
diff --git a/app/views/admin/statusgroups/_group.php b/app/views/admin/statusgroups/_group.php
index 0b29329f50ae15ffbe214750e11c9fe82b6335b6..9770d7be345d0228cbaa232a75b5792219911bc0 100644
--- a/app/views/admin/statusgroups/_group.php
+++ b/app/views/admin/statusgroups/_group.php
@@ -1,3 +1,13 @@
+<?php
+/**
+ * @var Admin_StatusgroupsController $controller
+ * @var Statusgruppen $group
+ * @var array $membersOfInstitute
+ * @var array $not_assigned
+ * @var string $tutor
+ * @var string $searchType
+ */
+?>
 <a name="group-<?= $group->id ?>"></a>
 <table id="<?= $group->id ?>" class="default movable">
     <colgroup>
diff --git a/app/views/admin/statusgroups/_members.php b/app/views/admin/statusgroups/_members.php
index 956679e501c729cfc753c10648cf472aafa80439..2150e4e88b0ea7bdfd115f6682d864ba63b9e755 100644
--- a/app/views/admin/statusgroups/_members.php
+++ b/app/views/admin/statusgroups/_members.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_StatusgroupsController $controller
+ * @var Statusgruppen $group
+ * @var string $tutor
+ */
+?>
 <? foreach ($group->members as $user): ?>
     <tr data-userid="<?= $user->user_id ?>">
         <td <?= ($tutor ? 'class="dragHandle"' : '') ?>></td>
diff --git a/app/views/admin/statusgroups/delete.php b/app/views/admin/statusgroups/delete.php
index e4173b614c87a36e4c913882e78afc071433481a..d31e1ebc3cd6ba1030a10db8f1aa985dc025014c 100644
--- a/app/views/admin/statusgroups/delete.php
+++ b/app/views/admin/statusgroups/delete.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_StatusgroupsController $controller
+ * @var Statusgruppen $group
+ * @var User $user
+ */
+?>
 <form method="post" action="<?= $controller->url_for("admin/statusgroups/delete/{$group->id}/{$user->user_id}") ?>" class="default">
     <?= CSRFProtection::tokenTag() ?>
     <fieldset>
diff --git a/app/views/admin/statusgroups/deleteGroup.php b/app/views/admin/statusgroups/deleteGroup.php
index e84331843f216d6c2a8e22d919fec1d1bb451155..f9eda8e61c222998981edb69ea09df417fbb1eb1 100644
--- a/app/views/admin/statusgroups/deleteGroup.php
+++ b/app/views/admin/statusgroups/deleteGroup.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_StatusgroupsController $controller
+ * @var Statusgruppen $group
+ */
+?>
 <form method="post" action="<?= $controller->url_for("admin/statusgroups/deleteGroup/{$group->id}") ?>" class="default">
     <?= CSRFProtection::tokenTag() ?>
     <fieldset>
diff --git a/app/views/admin/statusgroups/editGroup.php b/app/views/admin/statusgroups/editGroup.php
index 87bdfd73c2e9e05583694609e5a17b20dcd3667d..ac563e6bdc09127a631d346617b266577eeab4c1 100644
--- a/app/views/admin/statusgroups/editGroup.php
+++ b/app/views/admin/statusgroups/editGroup.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_StatusgroupsController $controller
+ * @var Statusgruppen $group
+ * @var Statusgruppen[] $groups
+ * @var array $type
+ */
+?>
 <form class="default" action="<?= $controller->url_for('admin/statusgroups/editGroup/' . $group->id) ?>#group-<?= $group->id ?>" method="post">
     <fieldset>
         <legend>
diff --git a/app/views/admin/statusgroups/index.php b/app/views/admin/statusgroups/index.php
index f9dc6b8f55e06febb799219d9bcfb392fc4e9c3c..c35bd55d43ccf9bc59c27793d086fce90e873534 100644
--- a/app/views/admin/statusgroups/index.php
+++ b/app/views/admin/statusgroups/index.php
@@ -1,6 +1,11 @@
+<?php
+/**
+ * @var Statusgruppen[] $groups
+ */
+?>
 <? if (!$groups): ?>
     <?= MessageBox::info(_('Es wurden noch keine Gruppen angelegt')) ?>
 <? endif; ?>
 <? foreach ($groups as $group): ?>
     <?= $this->render_partial('admin/statusgroups/_group.php', compact('group')) ?>
-<? endforeach; ?>
\ No newline at end of file
+<? endforeach; ?>
diff --git a/app/views/admin/statusgroups/sortAlphabetic.php b/app/views/admin/statusgroups/sortAlphabetic.php
index a73ce275c2cd181f4ed6f30e49227cdcc592d76f..04c3019b8b185aaf4904babd3345647f02c7c095 100644
--- a/app/views/admin/statusgroups/sortAlphabetic.php
+++ b/app/views/admin/statusgroups/sortAlphabetic.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_StatusgroupsController $controller
+ * @var Statusgruppen $group
+ */
+?>
 <form method="post" action="<?= $controller->url_for("admin/statusgroups/sortAlphabetic/{$group->id}") ?>" class="default">
     <?= CSRFProtection::tokenTag() ?>
     <fieldset>
diff --git a/app/views/admin/statusgroups/sortGroups.php b/app/views/admin/statusgroups/sortGroups.php
index 0f367e4945632a951091f7a1099b616cd527e9e2..80dd355e5a30eea074ebfc0634d059c9d1b61fe1 100644
--- a/app/views/admin/statusgroups/sortGroups.php
+++ b/app/views/admin/statusgroups/sortGroups.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_StatusgroupsController $controller
+ * @var Statusgruppen[] $groups
+ */
+?>
 <noscript>
     <?= MessageBox::info(_('Leider ist es aus technischen Gründen nicht möglich ein vernünftiges Interface '
                          . 'ohne Javascript zu liefern. Nutzen sie bitte die Gruppierung unter den '
diff --git a/app/views/admin/user/_course_files.php b/app/views/admin/user/_course_files.php
index 6da1662d52c228ab2755e9133c81e4c83a8d7d28..af623963da5658b2d285d0e916e1630e908501d6 100644
--- a/app/views/admin/user/_course_files.php
+++ b/app/views/admin/user/_course_files.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var array $course_files
+ * @var array $params
+ * @var User $user
+ */
+?>
 <section class="contentbox">
     <header>
         <h1>
diff --git a/app/views/admin/user/_course_list.php b/app/views/admin/user/_course_list.php
index 6f662774c60c45dcf5f4d41d1c66be4b2dfa12ae..a7e090bfb553ff1e1b572171ba126f5028c0c534 100644
--- a/app/views/admin/user/_course_list.php
+++ b/app/views/admin/user/_course_list.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var string $headline
+ * @var array $memberships
+ */
+?>
 <section class="contentbox">
     <header>
         <h1><?= $headline ?></h1>
diff --git a/app/views/admin/user/_delete.php b/app/views/admin/user/_delete.php
index db4b221a9650ff2160498ed8c85e242c1729a968..59c5fc1894b98f3a3307f1b138b8bbcdefcdf7c2 100644
--- a/app/views/admin/user/_delete.php
+++ b/app/views/admin/user/_delete.php
@@ -1,13 +1,20 @@
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var array $users
+ */
+?>
 <form action="<?= $controller->link_for('admin/user/delete') ?>" method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
-<? if ($users) : ?>
-    <? $details = [] ?>
-    <? foreach ($users as $user) : ?>
-        <? $details[] = htmlReady(sprintf('%s (%s)', $user->getFullName(), $user->username)) ?>
-        <input type="hidden" name="user_ids[]" value="<?= $user['user_id'] ?>">
-    <? endforeach ?>
-<? endif ?>
-    <?= MessageBox::warning(_('Wollen Sie die folgenden Nutzer wirklich löschen?'), $details) ?>
+    <? if ($users) : ?>
+        <? $details = [] ?>
+        <? foreach ($users as $user) : ?>
+            <? $details[] = htmlReady(sprintf('%s (%s)', $user->getFullName(), $user->username)) ?>
+            <input type="hidden" name="user_ids[]" value="<?= $user['user_id'] ?>">
+        <? endforeach ?>
+        <?= MessageBox::warning(_('Wollen Sie die folgenden Nutzer wirklich löschen?'), $details) ?>
+    <? endif ?>
+
 
     <fieldset>
         <legend><?= _('Personenbezogene Daten') ?></legend>
diff --git a/app/views/admin/user/_institute_files.php b/app/views/admin/user/_institute_files.php
index 6aeb05d28bf3c20ef50639a85808c50a20f0164a..bc557e317122cda56af9c6864e560a03e094b4d5 100644
--- a/app/views/admin/user/_institute_files.php
+++ b/app/views/admin/user/_institute_files.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var Institute[] $institutes
+ * @var User $user
+ * @var array $params
+ */
+?>
 <section class="contentbox">
     <header>
         <h1>
@@ -39,11 +47,11 @@
                                 $actionMenu = ActionMenu::get()->setContext($institute['name']);
                                 $actionMenu->addLink($controller->url_for('admin/user/list_files/' . $user['user_id'] . '/' . $institute['Institut_id'] , $params),
                                     _('Dateien auflisten'),
-                                    Icon::create('folder-full', 'clickable'),
+                                    Icon::create('folder-full'),
                                     ['data-dialog' => 'size=50%']);
                                 $actionMenu->addLink($controller->url_for('admin/user/download_user_files/' . $user['user_id'] . '/' . $institute['Institut_id']),
                                     _('Dateien als ZIP herunterladen'),
-                                    Icon::create('download', 'clickable'));
+                                    Icon::create('download'));
 
                                 ?>
                                 <?= $actionMenu->render() ?>
@@ -55,4 +63,3 @@
         </table>
     </section>
 </section>
-
diff --git a/app/views/admin/user/_priority_list.php b/app/views/admin/user/_priority_list.php
index 1727e7f1f3b46dc89f6b3e6bafa7dbda33c64fb9..e835a88309d3647d517e38b4d896702f742de66d 100644
--- a/app/views/admin/user/_priority_list.php
+++ b/app/views/admin/user/_priority_list.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var array $priorities
+ */
+?>
 <section class="contentbox">
     <header>
         <h1>
@@ -44,4 +49,4 @@
     <? else : ?>
         <?= $this->render_partial('admin/user/_activities_no_courses.php') ?>
     <? endif ?>
-</section>
\ No newline at end of file
+</section>
diff --git a/app/views/admin/user/_results.php b/app/views/admin/user/_results.php
index 695e30e200e685ab6a97768a57afab35fa312722..e41d995ead28a505fa526a17ff4d69b3c2328890 100644
--- a/app/views/admin/user/_results.php
+++ b/app/views/admin/user/_results.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var array $users
+ * @var string $sortby
+ * @var string $order
+ */
+?>
 <br>
 
 <form action="<?= $controller->link_for('admin/user/bulk') ?>" method="post" data-dialog="size=auto" class="default">
@@ -227,7 +235,7 @@
         </tbody>
         <tfoot>
             <tr>
-                <td colspan="11" align="right">
+                <td colspan="11">
                         <input style="vertical-align: middle" type="checkbox" name="check_all" title="<?= _('Alle Benutzer auswählen') ?>"
                                data-proxyfor=".check_all" data-activates=".bulkAction">
                         <select name="method" class="bulkAction size-s" required>
diff --git a/app/views/admin/user/_waiting_list.php b/app/views/admin/user/_waiting_list.php
index 392c751e7562834a19eae075065c2f1df00fffd7..1fd07242e6b4f2a1f3abd7f454e1bce17b98a214 100644
--- a/app/views/admin/user/_waiting_list.php
+++ b/app/views/admin/user/_waiting_list.php
@@ -1,3 +1,8 @@
+<?php
+/**
+ * @var array $memberships
+ */
+?>
 <section class="contentbox">
     <header>
         <h1>
@@ -46,4 +51,4 @@
     <? else : ?>
         <?= $this->render_partial('admin/user/_activities_no_courses.php') ?>
     <? endif ?>
-</section>
\ No newline at end of file
+</section>
diff --git a/app/views/admin/user/activities.php b/app/views/admin/user/activities.php
index 733df2661bbe8957c20ad7e4fbfba4e3ba0b04d2..d21c85f2afdb300dca56064f991e292b795f500b 100644
--- a/app/views/admin/user/activities.php
+++ b/app/views/admin/user/activities.php
@@ -1,3 +1,12 @@
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var array $queries
+ * @var array $user
+ * @var array $params
+ * @var array $sections
+ */
+?>
 <h1 class="hide-in-dialog">
     <?= htmlReady(PageLayout::getTitle()) ?>
 </h1>
diff --git a/app/views/admin/user/edit.php b/app/views/admin/user/edit.php
index f38f4ff6930b2a4c6c263dcd13d04e37d12f5568..1b0c2831892c7de8919c2ef9514f8445deddf060 100644
--- a/app/views/admin/user/edit.php
+++ b/app/views/admin/user/edit.php
@@ -1,5 +1,18 @@
-<?
+<?php
 # Lifter010: TODO
+
+/**
+ * @var Admin_UserController $controller
+ * @var array $flash
+ * @var User $user
+ * @var string $prelim
+ * @var array $available_auth_plugins
+ * @var array $available_institutes
+ * @var Fach[] $faecher
+ * @var Abschluss[] $abschluesse
+ * @var UserDomain[] $userdomains
+ * @var array $userfields
+ */
 use Studip\Button, Studip\LinkButton;
 
 ?>
diff --git a/app/views/admin/user/edit_institute.php b/app/views/admin/user/edit_institute.php
index d1f5b85f190f5dc8c8d5a466b586e1a7f98363a7..268a5fc3a98c58a18ae55d77fbfe8cf2c4a483be 100644
--- a/app/views/admin/user/edit_institute.php
+++ b/app/views/admin/user/edit_institute.php
@@ -1,4 +1,13 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var User $user
+ * @var Institute $institute
+ * @var array $perms
+ * @var DataField[] $datafields
+ */
+use Studip\Button, Studip\LinkButton;
+?>
 
 <form action="<?= $controller->url_for('admin/user/store_user_institute/' . $institute->user_id . '/' . $institute->institut_id) ?>"
       method="post" class="default">
diff --git a/app/views/admin/user/index.php b/app/views/admin/user/index.php
index cab7b7b2f3317d26dfbc81541cd008a345f21e43..bac2b527151652d3c7a1eb502944ece2bab9f41f 100644
--- a/app/views/admin/user/index.php
+++ b/app/views/admin/user/index.php
@@ -1,7 +1,17 @@
 <?
 # Lifter010: TODO
-use Studip\Button, Studip\LinkButton;
-
+/**
+ * @var Admin_UserController $controller
+ * @var array $request
+ * @var array $datafields
+ * @var array $available_auth_plugins
+ * @var Institute[] $institutes
+ * @var UserDomain[] $userdomains
+ * @var Fach[] $studycourses
+ * @var Abschluss[] $degrees
+ * @var bool $advanced
+ */
+use Studip\Button;
 ?>
 
 
diff --git a/app/views/admin/user/list_files.php b/app/views/admin/user/list_files.php
index 2d7ce9b3c8d6cc365a023de5b356c28df2dc3d4c..a351ec584059816517f421233a31c3c51a0e2fcb 100644
--- a/app/views/admin/user/list_files.php
+++ b/app/views/admin/user/list_files.php
@@ -1,3 +1,11 @@
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var array $params
+ * @var FolderType $folders
+ * @var User $user
+ */
+?>
 <section class="contentbox">
     <header>
         <h1><?= _('Dateiübersicht') ?></h1>
diff --git a/app/views/admin/user/lock_comment.php b/app/views/admin/user/lock_comment.php
index 4e87df05a0e0e948a429ef03cef12755e4fabae5..b874c5825b423de75847601beb307027dbe2ca43 100644
--- a/app/views/admin/user/lock_comment.php
+++ b/app/views/admin/user/lock_comment.php
@@ -1,3 +1,10 @@
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var array $params
+ * @var User $user
+ */
+?>
 <form action="<?=$controller->url_for('admin/user/lock/' . $user->id, $params)?>" method="post" class="default">
     <?= CSRFProtection::tokenTag()?>
 
diff --git a/app/views/admin/user/migrate.php b/app/views/admin/user/migrate.php
index 8b26766b58b804470a9d04b21b11591ba113cb86..dbfd1efedadf372cc1b3c96a1187bfd9ce2f0307 100644
--- a/app/views/admin/user/migrate.php
+++ b/app/views/admin/user/migrate.php
@@ -1,8 +1,11 @@
-<?
+<?php
 # Lifter010: TODO - Quicksearches still lack a label
+/**
+ * @var Admin_UserController $controller
+ * @var User $user
+ */
 
 use Studip\Button, Studip\LinkButton;
-
 ?>
 <form action="<?= $controller->url_for('admin/user/migrate') ?>" method="post" class="default">
     <?= CSRFProtection::tokenTag() ?>
diff --git a/app/views/admin/user/new.php b/app/views/admin/user/new.php
index 4d0c24d43086c30d93733aea7c431cc80162cdd9..49fd9ed29a289783109281cc149e7dac4c454165 100644
--- a/app/views/admin/user/new.php
+++ b/app/views/admin/user/new.php
@@ -1,7 +1,14 @@
-<?
+<?php
 # Lifter010: TODO
-use Studip\Button, Studip\LinkButton;
+/**
+ * @var Admin_UserController $controller
+ * @var User $user
+ * @var string $prelim
+ * @var array $faks
+ * @var UserDomain[] $domains
+ */
 
+use Studip\Button, Studip\LinkButton;
 ?>
 
 <form method="post" action="<?= $controller->url_for('admin/user/new/' . $prelim) ?>" class="default" data-secure="true">
@@ -29,7 +36,7 @@ use Studip\Button, Studip\LinkButton;
                 <?= _("Globaler Status") ?>
             </span>
 
-            <select class="user_form" name="perm" id="perm" onchange="jQuery('#admin_special').toggle( jQuery('#institut').val() != '0' && jQuery('#perm').val() == 'admin' )">
+            <select class="user_form" name="perm" id="perm" onchange="jQuery('#admin_special').toggle( jQuery('#institut').val() !== '0' && jQuery('#perm').val() === 'admin' )">
                 <option <? if ($user['perm'] == 'user') echo 'selected'; ?>>user</option>
                 <option <? if (!$user['perm'] || $user['perm'] == 'autor') echo 'selected'; ?>>autor</option>
                 <option <? if ($user['perm'] == 'tutor') echo 'selected'; ?>>tutor</option>
@@ -160,7 +167,7 @@ use Studip\Button, Studip\LinkButton;
         <label>
             <?= _("Einrichtung") ?>
 
-            <select multiple id="institut" class="user_form nested-select" name="institutes[]" onchange="jQuery('#admin_special').toggle( jQuery('#institut').val() != '0' && jQuery('#perm').val() == 'admin')">
+            <select multiple id="institut" class="user_form nested-select" name="institutes[]" onchange="jQuery('#admin_special').toggle( jQuery('#institut').val() !== '0' && jQuery('#perm').val() === 'admin')">
                 <option value="" class="is-placeholder">
                     <?= _('-- Bitte Einrichtung auswählen --') ?>
                 </option>
diff --git a/app/views/admin/user/show_user_courses.php b/app/views/admin/user/show_user_courses.php
index 52df5defd7153c7f6c4f58e8c32cdd4b385e61fb..7136d9da81a371297cc9cff9ed9ab59233c417b7 100644
--- a/app/views/admin/user/show_user_courses.php
+++ b/app/views/admin/user/show_user_courses.php
@@ -1,3 +1,9 @@
+<?php
+/**
+ * @var Admin_UserController $controller
+ * @var User $user
+ */
+?>
 <? if (!empty($sem_courses)) : ?>
     <form method="post" action="<?= $controller->delete_course_assignment($user) ?>" class="default collapsable"
           data-dialog="size=auto">
@@ -8,12 +14,12 @@
                     <?= htmlReady($sem_name) ?>
                 </legend>
                 <table class="default ">
+                    <colgroup>
+                        <col style="width: 20px">
+                        <col>
+                        <col>
+                    </colgroup>
                     <thead>
-                        <colgroup>
-                            <col style="width: 20px">
-                            <col>
-                            <col>
-                        </colgroup>
                         <tr>
                             <th>
                                 <input type="checkbox" name="all" value="1"
diff --git a/app/views/admin/webservice_access/index.php b/app/views/admin/webservice_access/index.php
index b74b67c10ff3801a57eecde9ac34aba23db3f297..07edb4c9f752e968a64b232210dbf37ef3b049d0 100644
--- a/app/views/admin/webservice_access/index.php
+++ b/app/views/admin/webservice_access/index.php
@@ -1,5 +1,10 @@
-<?
+<?php
 # Lifter010: TODO
+
+/**
+ * @var Admin_WebserviceAccessController $controller
+ * @var WebserviceAccessRule[] $ws_rules
+ */
 ?>
 <h3><?=_("Liste der Zugriffsregeln")?></h3>
 <form action="<?=$controller->url_for('admin/webservice_access/update#edit')?>" method="post" class="default">
diff --git a/app/views/admin/webservice_access/test.php b/app/views/admin/webservice_access/test.php
index 16b71a0e1dc1115f397f7933d7bd4c03f1ac8abb..396f885fa697b0da1682c2a665d38f2e1e4b715d 100644
--- a/app/views/admin/webservice_access/test.php
+++ b/app/views/admin/webservice_access/test.php
@@ -1,4 +1,10 @@
-<? use Studip\Button, Studip\LinkButton; ?>
+<?php
+/**
+ * @var Admin_WebserviceAccessController $controller
+ */
+
+use Studip\Button, Studip\LinkButton;
+?>
 <form action="<?=$controller->url_for('admin/webservice_access/test')?>" method="post" class="default">
     <?=CSRFProtection::tokenTag()?>
     <fieldset>