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