Skip to content
Snippets Groups Projects

Resolve "I18N für die Datenfelder der Tabelle user_inst"

Merged Thomas Hackl requested to merge tic-605 into main
4 unresolved threads

Closes #605 (closed)

Edited by Thomas Hackl

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
37 35 </label>
38 36 <label>
39 37 <?= _('Telefon') ?>
40 <input type="tel" name="tel"
41 value="<?= htmlReady($institute['telefon']) ?>"
42 <? if ($locked) echo 'disabled'; ?>>
38 <?= I18N::input('tel', $institute['telefon'],
39 ['id' => 'telefon', 'disabled' => $locked ? true : false]) ?>
43 40 </label>
44 41 <label>
45 42 <?= _('Fax') ?>
46 <input type="tel" name="fax"
47 value="<?= htmlReady($institute['fax']) ?>"
48 <? if ($locked) echo 'disabled'; ?>>
43 <?= I18N::input('fax', $institute['fax'],
44 ['id' => 'fax', 'disabled' => $locked ? true : false]) ?>
  • 31 30 </label>
    32 31 <label>
    33 32 <?= _('Sprechzeit') ?>
    34 <input type="text" name="sprech" id="sprech"
    35 value="<?= htmlReady($institute['sprechzeiten']) ?>"
    36 <? if ($locked) echo 'disabled'; ?>>
    33 <?= I18N::input('sprech', $institute['sprechzeiten'],
    34 ['id' => 'sprech', 'disabled' => $locked ? true : false]) ?>
    37 35 </label>
    38 36 <label>
    39 37 <?= _('Telefon') ?>
    40 <input type="tel" name="tel"
    41 value="<?= htmlReady($institute['telefon']) ?>"
    42 <? if ($locked) echo 'disabled'; ?>>
    38 <?= I18N::input('tel', $institute['telefon'],
    39 ['id' => 'telefon', 'disabled' => $locked ? true : false]) ?>
  • 25 25 </label>
    26 26 <label>
    27 27 <?= _('Raum') ?>
    28 <input type="text" name="raum" id="raum"
    29 value="<?= htmlReady($institute['raum']) ?>"
    30 <? if ($locked) echo 'disabled'; ?>>
    28 <?= I18N::input('raum', $institute['raum'],
    29 ['id' => 'raum', 'disabled' => $locked ? true : false]) ?>
    31 30 </label>
    32 31 <label>
    33 32 <?= _('Sprechzeit') ?>
    34 <input type="text" name="sprech" id="sprech"
    35 value="<?= htmlReady($institute['sprechzeiten']) ?>"
    36 <? if ($locked) echo 'disabled'; ?>>
    33 <?= I18N::input('sprech', $institute['sprechzeiten'],
    34 ['id' => 'sprech', 'disabled' => $locked ? true : false]) ?>
  • 25 25 </label>
    26 26 <label>
    27 27 <?= _('Raum') ?>
    28 <input type="text" name="raum" id="raum"
    29 value="<?= htmlReady($institute['raum']) ?>"
    30 <? if ($locked) echo 'disabled'; ?>>
    28 <?= I18N::input('raum', $institute['raum'],
    29 ['id' => 'raum', 'disabled' => $locked ? true : false]) ?>
  • Bis auf diese Boolean-Geschichte sieht das soweit korrekt aus.

  • Jan-Hendrik Willms approved this merge request

    approved this merge request

  • merged

  • Thomas Hackl mentioned in commit 3c1c4f1f

    mentioned in commit 3c1c4f1f

  • Thomas Hackl mentioned in commit d3cecf0a

    mentioned in commit d3cecf0a

  • Please register or sign in to reply
    Loading