diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-08-23 06:55:26 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-08-23 06:55:26 -0400 |
commit | 305e0538d293ff4ad72f30b11998ae3b06efa4ea (patch) | |
tree | 4bf1f79ba123758f34320019e445268318e1e734 /view/tpl/website_portation_tools.tpl | |
parent | d39cf23b2f15ed94048ea7596d7581be7ef8c001 (diff) | |
download | volse-hubzilla-305e0538d293ff4ad72f30b11998ae3b06efa4ea.tar.gz volse-hubzilla-305e0538d293ff4ad72f30b11998ae3b06efa4ea.tar.bz2 volse-hubzilla-305e0538d293ff4ad72f30b11998ae3b06efa4ea.zip |
Website export to cloud files works. Created new recursive copy function in attach.php.
Diffstat (limited to 'view/tpl/website_portation_tools.tpl')
-rw-r--r-- | view/tpl/website_portation_tools.tpl | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/view/tpl/website_portation_tools.tpl b/view/tpl/website_portation_tools.tpl index 2f68a7393..10468b64e 100644 --- a/view/tpl/website_portation_tools.tpl +++ b/view/tpl/website_portation_tools.tpl @@ -35,7 +35,7 @@ </ul> <ul class="nav nav-pills nav-stacked"> <li> - <a href="#" onclick="openClose('export-form'); + <a href="#" onclick="openClose('export-form'); openClose('export-cloud-form'); return false;"><i class="fa fa-share-square-o generic-icons"></i> {{$export_label}}</a> </li> <li style="margin-left: 12px;" > @@ -53,6 +53,20 @@ </div> </div> </form> + <form id="export-cloud-form" enctype="multipart/form-data" method="post" action="" style="display: none;" class="sub-menu"> + <input type="hidden" name="action" value="exportcloud"> + <!-- Or export the website elements to a cloud files folder --> + <p style="margin-top: 10px;" class="descriptive-text">{{$cloud_export_text}}</p> + <div class="form-group"> + + <div class="input-group"> + <input class="widget-input" type="text" name="exportcloudpath" title="{{$cloud_export_hint}}" placeholder="{{$cloud_export_desc}}" /> + <div class="input-group-btn"> + <button class="btn btn-default btn-sm" type="submit" name="exportcloudsubmit" value="{{$cloud_export_select}}"><i class="fa fa-folder-open generic-icons"></i></button> + </div> + </div> + </div> + </form> </li> </ul> </div> |