nextcloud/core/templates/update.admin.php

32 lines
1.3 KiB
PHP
Raw Normal View History

<div class="update" data-productname="<?php p($_['productName']) ?>" data-version="<?php p($_['version']) ?>">
<div class="updateOverview">
<h2 class="title bold"><?php p($l->t('%s will be updated to version %s.',
array($_['productName'], $_['version']))); ?></h2>
2014-05-26 20:43:26 +04:00
<?php if (!empty($_['appList'])) { ?>
2014-05-27 18:36:21 +04:00
<div class="infogroup">
<span class="bold"><?php p($l->t('The following apps will be disabled:')) ?></span>
2014-05-26 20:43:26 +04:00
<ul class="content appList">
<?php foreach ($_['appList'] as $appInfo) { ?>
<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
<?php } ?>
2014-05-26 20:43:26 +04:00
</ul>
</div>
<?php } ?>
<?php if (!empty($_['oldTheme'])) { ?>
<div class="infogroup bold">
<?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?>
2014-05-26 20:43:26 +04:00
</div>
<?php } ?>
<div class="infogroup bold">
<?php p($l->t('Please make sure that the database, the config folder and the data folder have been backed up before proceeding.')) ?>
2014-05-26 20:43:26 +04:00
</div>
<input class="updateButton" type="button" value="<?php p($l->t('Start update')) ?>">
2014-08-18 17:05:55 +04:00
<div class="infogroup">
<?php p($l->t('To avoid timeouts with larger installations, you can instead run the following command from your installation directory:')) ?>
<pre>./occ upgrade</pre>
</div>
2014-05-26 20:43:26 +04:00
</div>
<div class="updateProgress hidden"></div>
2014-05-26 20:43:26 +04:00
</div>