diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-01-31 13:07:21 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-01-31 14:53:52 +0100 |
| commit | fe71c29ba01175aca965ba2ef8ec24fed8a03847 (patch) | |
| tree | 098e59b4242049b9168ba25e2e022281ddf841e0 /app/views | |
| parent | f7cf89243fb16c77512d4d762df4dc721fcc842c (diff) | |
make elements on user privacy settings page translatable, fixes #5205
Closes #5205
Merge request studip/studip!3891
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/settings/privacy.php | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/app/views/settings/privacy.php b/app/views/settings/privacy.php index fd1f776..3d44d68 100644 --- a/app/views/settings/privacy.php +++ b/app/views/settings/privacy.php @@ -1,7 +1,20 @@ -<? -# Lifter010: TODO -use Studip\Button, Studip\LinkButton; +<?php +use Studip\Button; +/** + * @var Settings_PrivacyController $controller + * @var string $global_visibility + * @var string $user_perm + * @var UserDomain[] $user_domains + * @var User $user + * @var bool $online_visibility + * @var bool $search_visibility + * @var bool $email_visibility + * @var string[] $visibilities + * @var int $colCount + * @var array $homepage_elements + * @var string $default_homepage_visibility + */ ?> <form method="post" action="<?= $controller->url_for('settings/privacy/global') ?>" class="default"> <?= CSRFProtection::tokenTag() ?> |
