2016-03-28 16:29:05 +02:00
|
|
|
<!--
|
2017-01-27 05:04:38 +01:00
|
|
|
This is the template used by mod/fbrowser.php
|
2016-03-28 16:29:05 +02:00
|
|
|
-->
|
|
|
|
<style>
|
|
|
|
#buglink_wrapper{display:none;} /* hide buglink. only in this page */
|
|
|
|
</style>
|
2016-05-09 21:08:11 +02:00
|
|
|
{{*<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>*}}
|
|
|
|
{{*<script type="text/javascript" src="view/theme/frio/js/filebrowser.js"></script>*}}
|
2016-03-28 16:29:05 +02:00
|
|
|
|
|
|
|
<div class="fbrowser {{$type}}">
|
2017-03-20 22:45:24 +01:00
|
|
|
<div class="fbrowser-content">
|
|
|
|
<input id="fb-nickname" type="hidden" name="type" value="{{$nickname}}" />
|
|
|
|
<input id="fb-type" type="hidden" name="type" value="{{$type}}" />
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2017-03-20 22:45:24 +01:00
|
|
|
<div class="error hidden">
|
|
|
|
<span></span> <a href="#" class='close'>X</a>
|
|
|
|
</div>
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2017-03-21 23:08:37 +01:00
|
|
|
{{* The breadcrumb navigation *}}
|
2017-03-21 03:35:25 +01:00
|
|
|
<ol class="path breadcrumb">
|
|
|
|
{{foreach $path as $p}}<li><a href="#" data-folder="{{$p.0}}">{{$p.1}}</a></li>{{/foreach}}
|
2017-03-21 23:08:37 +01:00
|
|
|
|
|
|
|
{{* Switch between image and file mode *}}
|
2017-03-21 03:35:25 +01:00
|
|
|
<div class="fbswitcher btn-group btn-group-xs pull-right">
|
|
|
|
<button type="button" class="btn btn-default" data-mode="image"><i class="fa fa-picture-o" aria-hidden="true"></i></button>
|
|
|
|
<button type="button" class="btn btn-default" data-mode="file"><i class="fa fa-file-o" aria-hidden="true"></i></button>
|
|
|
|
</div>
|
|
|
|
</ol>
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2017-03-21 03:35:25 +01:00
|
|
|
<div class="media">
|
2017-03-21 23:08:37 +01:00
|
|
|
|
|
|
|
{{* List of photo albums *}}
|
2017-03-21 03:35:25 +01:00
|
|
|
{{if $folders }}
|
|
|
|
<div class="folders media-left">
|
|
|
|
<ul>
|
|
|
|
{{foreach $folders as $f}}<li><a href="#" data-folder="{{$f.0}}">{{$f.1}}</a></li>{{/foreach}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2017-03-20 22:45:24 +01:00
|
|
|
|
2017-03-21 23:08:37 +01:00
|
|
|
{{* The main content (images or files) *}}
|
2017-03-21 03:35:25 +01:00
|
|
|
<div class="list {{$type}} media-body">
|
2017-03-21 20:39:31 +01:00
|
|
|
<div class="fbrowser-content-container">
|
|
|
|
{{foreach $files as $f}}
|
|
|
|
<div class="photo-album-image-wrapper">
|
|
|
|
<a href="#" class="photo-album-photo-link" data-link="{{$f.0}}" data-filename="{{$f.1}}" data-img="{{$f.2}}">
|
|
|
|
<img src="{{$f.2}}" alt="{{$f.1}}">
|
|
|
|
<p>{{$f.1}}</p>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{/foreach}}
|
2017-03-21 03:35:25 +01:00
|
|
|
</div>
|
2017-03-20 22:45:24 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2017-03-20 22:45:24 +01:00
|
|
|
<div class="upload">
|
2017-03-21 23:08:37 +01:00
|
|
|
<button id="upload-{{$type}}">{{"Upload"|t}}</button>
|
2016-03-28 16:29:05 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-21 23:08:37 +01:00
|
|
|
|
|
|
|
{{* This part contains the conent loader icon which is visible when new conent is loaded *}}
|
2017-03-20 22:45:24 +01:00
|
|
|
<div class="profile-rotator-wrapper" style="display: none;">
|
2017-03-21 03:35:25 +01:00
|
|
|
<i class="fa fa-circle-o-notch fa-spin" aria-hidden="true"></i>
|
2016-03-28 16:29:05 +02:00
|
|
|
</div>
|
|
|
|
</div>
|