summaryrefslogtreecommitdiffstats
path: root/settings/templates/apps.php
blob: d25ca1bc7fb881f291288643a46b7df9a194f52a (plain)
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
<?php /**
 * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
 * This file is licensed under the Affero General Public License version 3 or later.
 * See the COPYING-README file.
 */?>

<div id="controls">
	<a class="button" target="_blank" href="http://owncloud.org/dev/writing-apps/"><?php echo $l->t('Add your App');?></a>
</div>
<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 OC_JSON::encodedPrint($app,false) ?>
		</span>
		<?php  if(!$app['internal']) echo '<small class="externalapp">3rd party</small>' ?>
	</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><small class="externalapp" style="visibility:hidden;"></small></h3>
	<p class="description"></p>
	<img src="" class="preview" />
	<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>