Revision 3731:3770620079d4,
1.6 KB
checked in by franck <carnet.franck.paul@…>, 8 years ago
(diff) |
Simplify licence block at the beginning of each file
|
Rev | Line | |
---|
[1955] | 1 | <?php |
---|
[3731] | 2 | /** |
---|
| 3 | * @brief maintenance, a plugin for Dotclear 2 |
---|
| 4 | * |
---|
| 5 | * @package Dotclear |
---|
| 6 | * @subpackage Plugins |
---|
| 7 | * |
---|
| 8 | * @copyright Olivier Meunier & Association Dotclear |
---|
| 9 | * @copyright GPL-2.0-only |
---|
| 10 | */ |
---|
| 11 | |
---|
[3730] | 12 | if (!defined('DC_RC_PATH')) {return;} |
---|
[1955] | 13 | |
---|
| 14 | class dcMaintenanceZipmedia extends dcMaintenanceTask |
---|
| 15 | { |
---|
[3730] | 16 | protected $perm = 'admin'; |
---|
| 17 | protected $blog = true; |
---|
| 18 | protected $tab = 'backup'; |
---|
| 19 | protected $group = 'zipblog'; |
---|
[1955] | 20 | |
---|
[3730] | 21 | protected function init() |
---|
| 22 | { |
---|
| 23 | $this->task = __('Download media folder of current blog'); |
---|
[2044] | 24 | |
---|
[3730] | 25 | $this->description = __('It may be useful to backup your media folder. This compress all content of media folder into a single zip file. Notice : with some hosters, the media folder cannot be compressed with this plugin if it is too big.'); |
---|
| 26 | } |
---|
[1955] | 27 | |
---|
[3730] | 28 | public function execute() |
---|
| 29 | { |
---|
| 30 | // Instance media |
---|
| 31 | $this->core->media = new dcMedia($this->core); |
---|
| 32 | $this->core->media->chdir(null); |
---|
| 33 | $this->core->media->getDir(); |
---|
[1955] | 34 | |
---|
[3730] | 35 | // Create zip |
---|
| 36 | @set_time_limit(300); |
---|
| 37 | $fp = fopen('php://output', 'wb'); |
---|
| 38 | $zip = new fileZip($fp); |
---|
| 39 | $zip->addExclusion('#(^|/).(.*?)_(m|s|sq|t).jpg$#'); |
---|
| 40 | $zip->addDirectory($this->core->media->root . '/', '', true); |
---|
[1955] | 41 | |
---|
[3730] | 42 | // Log task execution here as we sent file and stop script |
---|
| 43 | $this->log(); |
---|
[1955] | 44 | |
---|
[3730] | 45 | // Send zip |
---|
| 46 | header('Content-Disposition: attachment;filename=' . date('Y-m-d') . '-' . $this->core->blog->id . '-' . 'media.zip'); |
---|
| 47 | header('Content-Type: application/x-zip'); |
---|
| 48 | $zip->write(); |
---|
| 49 | unset($zip); |
---|
| 50 | exit(1); |
---|
| 51 | } |
---|
[1955] | 52 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.