diff options
Diffstat (limited to 'files/templates/index.php')
-rw-r--r-- | files/templates/index.php | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/files/templates/index.php b/files/templates/index.php index 4e105811f05..e2e9dc03001 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -1,5 +1,6 @@ <div id="controls"> <?php echo($_['breadcrumb']); ?> + <?php if (!isset($_['readonly']) || !$_['readonly']) {?> <div class="actions"> <form data-upload-id='1' class="file_upload_form" action="ajax/upload.php" method="post" enctype="multipart/form-data" target="file_upload_target_1"> <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_['uploadMaxFilesize'] ?>" id="max_upload"> @@ -19,23 +20,30 @@ <div id="file_action_panel"> </div> </div> +<?php +} +?> <div id='notification'></div> -<div id="emptyfolder" <?php if(count($_['files'])) echo 'style="display:none;"';?>><?php echo $l->t('Nothing in here. Upload something!')?></div> +<?php +if (isset($_['files'])) { + if (!count($_['files'])) { ?> +<div id="emptyfolder"><?php echo $l->t('Nothing in here. Upload something!')?></div> +<?php }}?> <table> <thead> <tr> <th id='headerName'> - <input type="checkbox" id="select_all" /> + <?php if(!isset($_['readonly']) || !$_['readonly']) { ?><input type="checkbox" id="select_all" /><?php } ?> <span class='name'><?php echo $l->t( 'Name' ); ?></span> <span class='selectedActions'> - <a href="" title="<?php echo $l->t('Download')?>" class="download"><img class='svg' alt="Download" src="../core/img/actions/download.svg" /></a> - <a href="" title="Share" class="share"><img class='svg' alt="Share" src="../core/img/actions/share.svg" /></a> + <a href="" title="<?php echo $l->t('Download')?>" class="download"><img class='svg' alt="Download" src="<?php echo image_path("core", "actions/download.svg"); ?>" /></a> + <a href="" title="Share" class="share"><img class='svg' alt="Share" src="<?php echo image_path("core", "actions/share.svg"); ?>" /></a> </span> </th> <th id="headerSize"><?php echo $l->t( 'Size' ); ?></th> - <th id="headerDate"><span id="modified"><?php echo $l->t( 'Modified' ); ?></span><span class="selectedActions"><a href="" title="Delete" class="delete"><img class="svg" alt="<?php echo $l->t('Delete')?>" src="../core/img/actions/delete.svg" /></a></span></th> + <th id="headerDate"><span id="modified"><?php echo $l->t( 'Modified' ); ?></span><span class="selectedActions"><a href="" title="Delete" class="delete"><img class="svg" alt="<?php echo $l->t('Delete')?>" src="<?php echo image_path("core", "actions/delete.svg"); ?>" /></a></span></th> </tr> </thead> <tbody id="fileList"> |