mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
MINOR implement the allowedExtensions functionality of AssetAdmin when you rename a file (from r92037) (from r96814)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@102676 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
99eb135198
commit
caed94d9f5
@ -343,6 +343,30 @@ class AssetTableField extends ComplexTableField {
|
||||
);
|
||||
}
|
||||
}
|
||||
function handleItem($request) {
|
||||
return new AssetTableField_ItemRequest($this, $request->param('ID'));
|
||||
}
|
||||
}
|
||||
|
||||
class AssetTableField_ItemRequest extends ComplexTableField_ItemRequest {
|
||||
function saveComplexTableField($data, $form, $request) {
|
||||
|
||||
if(!AssetAdmin::$apply_restrictions_to_admin && Permission::check('ADMIN')) {
|
||||
if(!in_array(strtolower(pathinfo($data['Name'], PATHINFO_EXTENSION)), AssetAdmin::$allowed_extensions)) {
|
||||
$form->sessionMessage(sprintf(
|
||||
_t(
|
||||
'File.INVALIDEXTENSION',
|
||||
'Extension is not allowed (valid: %s)',
|
||||
PR_MEDIUM,
|
||||
'Argument 1: Comma-separated list of valid extensions'
|
||||
),
|
||||
implode(',',AssetAdmin::$allowed_extensions)
|
||||
), 'bad');
|
||||
Director::redirectBack();
|
||||
return;
|
||||
}
|
||||
}
|
||||
return parent::saveComplexTableField($data, $form, $request);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user