Blame view

sources/core/templates/update.admin.php 1.01 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <div class="update">
  	<div class="updateOverview">
  		<h2 class="title bold"><?php p($l->t('%s will be updated to version %s.',
  			array($_['productName'], $_['version']))); ?></h2>
  		<?php if (!empty($_['appList'])) { ?>
  		<div class="infogroup">
  			<span class="bold"><?php p($l->t('The following apps will be disabled:')) ?></span>
  			<ul class="content appList">
  				<?php foreach ($_['appList'] as $appInfo) { ?>
  				<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
  				<?php } ?>
  			</ul>
  		</div>
  		<?php } ?>
  		<?php if (!empty($_['oldTheme'])) { ?>
  		<div class="infogroup bold">
  			<?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?>
  		</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.')) ?>
  		</div>
  		<input class="updateButton" type="button" value="<?php p($l->t('Start update')) ?>">
  	</div>
  
  	<div class="updateProgress hidden"></div>
  </div>