apps.php 1018 B

1234567891011121314151617181920212223242526
  1. <?php /**
  2. * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
  3. * This file is licensed under the Affero General Public License version 3 or later.
  4. * See the COPYING-README file.
  5. */?>
  6. <div id="controls">
  7. <a class="button" target="_blank" href="http://owncloud.org/contribute/writing-apps/"><?php echo $l->t('Add your application');?></a>
  8. </div>
  9. <ul id="leftcontent">
  10. <?php foreach($_['apps'] as $app):?>
  11. <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>">
  12. <?php echo $app['name'] ?>
  13. <span class="hidden">
  14. <?php OC_JSON::encodedPrint($app,false) ?>
  15. </span>
  16. </li>
  17. <?php endforeach;?>
  18. </ul>
  19. <div id="rightcontent">
  20. <h3><strong><span class="name"><?php echo $l->t('Select an App');?></span></strong><span class="version"></span></h3>
  21. <p class="description"></p>
  22. <p class="hidden"><span class="licence"></span><?php echo $l->t('-licensed');?> <?php echo $l->t('by');?> <span class="author"></span></p>
  23. <input class="enable hidden" type="submit" />
  24. </div>