summaryrefslogtreecommitdiffstats
path: root/admin/templates/appsinst.php
blob: e845cb451fd3be5285e9bc0b5a0fa0161a4a74b7 (plain)
1
2
3
4
5
6
7
<ul id="apps">
<?php foreach($_["apps"] as $app): ?>
	<li x-uid="<?php echo($app['id']); ?>"><strong><?php echo($app['name']); ?></strong> <?php echo($app['version']); ?> <em>by <?php echo($app['author']); ?></em>
	<input x-use="appenablebutton" type="submit" value="<?php echo $l->t( $app['enabled'] ? 'enabled' : 'disabled' ); ?>" class="appbutton <?php echo( $app['enabled'] ? 'enabled' : 'disabled' ); ?>" />
	</li>
<?php endforeach; ?>
</ul>