2014-04-28 15:59:50 +00:00
|
|
|
<?php /** @var $l OC_L10N */ ?>
|
2013-12-09 12:32:28 +00:00
|
|
|
<?php $_['appNavigation']->printPage(); ?>
|
|
|
|
<div id="app-content">
|
2014-05-08 14:24:24 +00:00
|
|
|
<?php foreach ($_['appContents'] as $content) { ?>
|
2014-05-22 09:16:42 +00:00
|
|
|
<div id="app-content-<?php p($content['id']) ?>" class="hidden viewcontainer">
|
2014-05-08 14:24:24 +00:00
|
|
|
<?php print_unescaped($content['content']) ?>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
2013-12-09 12:32:28 +00:00
|
|
|
</div><!-- closing app-content -->
|
|
|
|
|
2012-03-19 10:56:02 +00:00
|
|
|
<!-- config hints for javascript -->
|
2013-10-08 15:19:58 +00:00
|
|
|
<input type="hidden" name="filesApp" id="filesApp" value="1" />
|
2013-02-27 20:14:15 +00:00
|
|
|
<input type="hidden" name="usedSpacePercent" id="usedSpacePercent" value="<?php p($_['usedSpacePercent']); ?>" />
|
2015-06-05 16:21:41 +00:00
|
|
|
<input type="hidden" name="owner" id="owner" value="<?php p($_['owner']); ?>" />
|
|
|
|
<input type="hidden" name="ownerDisplayName" id="ownerDisplayName" value="<?php p($_['ownerDisplayName']); ?>" />
|
2013-11-21 11:02:09 +00:00
|
|
|
<?php if (!$_['isPublic']) :?>
|
2013-08-30 11:53:49 +00:00
|
|
|
<input type="hidden" name="mailNotificationEnabled" id="mailNotificationEnabled" value="<?php p($_['mailNotificationEnabled']) ?>" />
|
2014-09-22 10:13:44 +00:00
|
|
|
<input type="hidden" name="mailPublicNotificationEnabled" id="mailPublicNotificationEnabled" value="<?php p($_['mailPublicNotificationEnabled']) ?>" />
|
2013-10-21 09:29:40 +00:00
|
|
|
<input type="hidden" name="allowShareWithLink" id="allowShareWithLink" value="<?php p($_['allowShareWithLink']) ?>" />
|
2013-11-21 11:02:09 +00:00
|
|
|
<?php endif;
|