2016-03-04 15:56:13 +03:00
< ? 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' ];
?>
2016-08-13 01:29:39 +03:00
< form id = " oca_updatenotification_section " class = " followupsection " >
2016-09-27 15:47:59 +03:00
< ? php if ( $isNewVersionAvailable === true ) { ?>
2016-03-04 15:56:13 +03:00
< strong >< ? php p ( $l -> t ( 'A new version is available: %s' , [ $newVersionString ])); ?> </strong>
2016-09-27 15:47:59 +03:00
< ? php if ( $_ [ 'updaterEnabled' ]) { ?>
< input type = " button " id = " oca_updatenotification_button " value = " <?php p( $l->t ('Open updater')) ?> " >
< ? php } ?>
< ? php if ( ! empty ( $_ [ 'downloadLink' ])) { ?>
< a href = " <?php p( $_['downloadLink'] ); ?> " class = " button<?php if ( $_['updaterEnabled'] ) { p(' hidden'); } ?> " >< ? php p ( $l -> t ( 'Download now' )) ?> </a>
< ? php } ?>
< ? php } else { ?>
2017-04-24 20:09:30 +03:00
< ? php p ( $l -> t ( 'Your version is up to date.' )); ?>
2016-03-04 15:56:13 +03:00
< span class = " icon-info svg " title = " <?php p( $l->t ('Checked on %s', [ $lastCheckedDate ])) ?> " ></ span >
2016-09-27 15:47:59 +03:00
< ? php } ?>
2016-03-04 15:56:13 +03:00
2016-02-09 21:58:29 +03:00
< p >
2016-03-04 15:56:13 +03:00
< 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 >
2016-09-07 17:38:12 +03:00
< span id = " channel_save_msg " class = " msg " ></ span >
2016-03-04 15:56:13 +03:00
</ 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>
2017-06-27 18:00:06 +03:00
< em >< ? php p ( $l -> t ( 'Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.' )); ?> </em>
2016-02-09 21:58:29 +03:00
</ p >
2016-05-09 10:43:06 +03:00
2016-05-10 12:04:24 +03:00
< p id = " oca_updatenotification_groups " >
2016-05-09 10:43:06 +03:00
< 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 " >
2016-05-10 12:04:24 +03:00
< em class = " <?php if (!in_array( $currentChannel , ['daily', 'git'])) p('hidden'); ?> " >
< br />
2016-06-29 13:08:26 +03:00
< ? 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.' )); ?>
2016-05-10 12:04:24 +03:00
</ em >
2016-05-09 10:43:06 +03:00
</ p >
2016-02-09 21:58:29 +03:00
</ form >