Welcome to mirror list, hosted at ThFree Co, Russian Federation.

apps.php « templates « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5375c06fc4fed71046d9e8fb89a00b82a1e7811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<ul id="leftcontent">
	<?php foreach($_['apps'] as $app):?>
		<li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>">
			<?php  echo $app['name'] ?>
			<span class="hidden">
				<?php echo json_encode($app) ?>
			</span>
		</li>
	<?php endforeach;?>
</ul>
<div id="rightcontent">
	<h3><strong><span class="name"><?php echo $l->t('Select an App');?></span></strong><span class="version"></span></h3>
	<p class="description"></p>
	<p class="hidden"><span class="licence"></span><?php echo $l->t('-licensed');?> <?php echo $l->t('by');?> <span class="author"></span></p>
	<input class="enable hidden" type="submit" />
</div>