-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: GridField remove actions should be available even if object i…
…s not editable. Use the permission check to validate if the user has the permissions to remove.
- Loading branch information
1 parent
9102489
commit 3b6dfd7
Showing
2 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace Terraformers\EmbargoExpiry\Form; | ||
|
||
use SilverStripe\Forms\FormAction; | ||
|
||
/** | ||
* Class EmbargoExpiryFormAction | ||
* | ||
* @package Terraformers\EmbargoExpiry\Form | ||
*/ | ||
class EmbargoExpiryFormAction extends FormAction | ||
{ | ||
/** | ||
* We don't ever want to perform a readonly transformation on this action. If it has been made available to the use, | ||
* that means they're allowed to use it. | ||
*/ | ||
public function performReadonlyTransformation() | ||
{ | ||
return $this; | ||
} | ||
} |