cc6c46f59d
FossilOrigin-Name: 2134225b5757bee55253c1af81ba9f3dab5ea2f948c93ae42d76d3af6164f370
22 lines
554 B
PHP
22 lines
554 B
PHP
<?php
|
|
namespace Garradin;
|
|
|
|
use Garradin\Entities\Files\File;
|
|
use Garradin\Files\Files;
|
|
|
|
$parent = qg('p');
|
|
|
|
if (!File::checkCreateAccess($parent, $session)) {
|
|
throw new UserException('Vous n\'avez pas le droit d\'ajouter de fichier.');
|
|
}
|
|
|
|
$csrf_key = 'upload_file_' . md5($parent);
|
|
|
|
$form->runIf('upload', function () use ($parent) {
|
|
$_SESSION['sig_file'] = File::uploadMultiple($parent, 'file');
|
|
}, $csrf_key, PLUGIN_ROOT . '/www/admin/config.php');
|
|
|
|
$tpl->assign(compact('parent', 'csrf_key'));
|
|
|
|
$tpl->display(PLUGIN_ROOT . '/templates/upload.tpl');
|