1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/views/admin_plupload.html.php.html
Anthony Callegaro e3bb5b91e1 First kind of working version of the plupload module
What works :
* the plugin in general and its structure that was inspire by the default uploadify module and by the html_uploader
* it does replace the default uploader upon install
* re-use the same form to upload files
* Use HTML5 and Flash (for now can add other backend if useful)
* Reduce image to a selected size
* The file selection button is mapped to the module
* Once selected uploading start automatically as well as the image size reduction
* Display selected files and upload status (text only for now)
* Change the status of the button at the bottom of the form depending on the upload status

What doesn't work yet:
* actually adding the photo to the album (made some network capture with uploadify POST to try to reproduce it)
* "Cancel All" button isn't currently stopping the upload
* Dynamically display the upload process like the uploadify module
2012-08-23 19:01:39 +02:00

29 lines
910 B
HTML

<?php defined("SYSPATH") or die("No direct script access.") ?>
<?php
/**
* Plupload gallery3 module admin page template
*
* Copyright (C) Anthony Callegaro
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
*-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* A copy of the GPL2 License is available here :
* http://www.gnu.org/licenses/gpl-2.0.html
*/
?>
<div class="g-block">
<h1> <?= t("Plupload") ?> </h1>
<div class="g-block-content">
<p>
<?= t("Plupload admin page") ?>
</p>
</div>
</div>