1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- script('updatenotification', 'admin');
- /** @var array $_ */
- /** @var bool $isNewVersionAvailable */
- $isNewVersionAvailable = $_['isNewVersionAvailable'];
- /** @var string $newVersionString */
- $newVersionString = $_['newVersionString'];
- /** @var string $lastCheckedDate */
- $lastCheckedDate = $_['lastChecked'];
- /** @var array $channels */
- $channels = $_['channels'];
- /** @var string $currentChannel */
- $currentChannel = $_['currentChannel'];
- ?>
- <form id="oca_updatenotification_section" class="followupsection">
- <?php if($isNewVersionAvailable === true): ?>
- <strong><?php p($l->t('A new version is available: %s', [$newVersionString])); ?></strong>
- <input type="button" id="oca_updatenotification_button" value="<?php p($l->t('Open updater')) ?>">
- <?php else: ?>
- <strong><?php print_unescaped($l->t('Your version is up to date.')); ?></strong>
- <span class="icon-info svg" title="<?php p($l->t('Checked on %s', [$lastCheckedDate])) ?>"></span>
- <?php endif; ?>
- <p>
- <label for="release-channel"><?php p($l->t('Update channel:')) ?></label>
- <select id="release-channel">
- <option value="<?php p($currentChannel); ?>"><?php p($currentChannel); ?></option>
- <?php foreach ($channels as $channel => $channelTitle){ ?>
- <option value="<?php p($channelTitle) ?>">
- <?php p($channelTitle) ?>
- </option>
- <?php } ?>
- </select>
- <span id="channel_save_msg"></span>
- </p>
- <p>
- <em><?php p($l->t('You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.')); ?></em>
- </p>
- <p id="oca_updatenotification_groups">
- <br />
- <?php p($l->t('Notify members of the following groups about available updates:')); ?>
- <input name="oca_updatenotification_groups_list" type="hidden" id="oca_updatenotification_groups_list" value="<?php p($_['notify_groups']) ?>" style="width: 400px">
- <em class="<?php if (!in_array($currentChannel, ['daily', 'git'])) p('hidden'); ?>">
- <br />
- <?php p($l->t('Only notification for app updates are available.')); ?>
- <?php if ($currentChannel === 'daily') p($l->t('The selected update channel makes dedicated notifications for the server obsolete.')); ?>
- <?php if ($currentChannel === 'git') p($l->t('The selected update channel does not support updates of the server.')); ?>
- </em>
- </p>
- </form>
|