Use simply 'group' instead of 'security group' for consistency in alert about no...
[silverstripe-elijah.git] / code / CMSActionOptionsForm.php
blob90e369bc29b6dbe7207dc91f03722e2a82ed67e7
1 <?php
3 /**
4 * A special kind of form used to make the action dialogs that appear just underneath the top-right
5 * buttons in the CMS
6 */
7 class CMSActionOptionsForm extends Form {
8 function FormAttributes() {
9 return "class=\"actionparams\" style=\"display:none\" " . parent::FormAttributes();
11 function FormName() {
12 $action = $this->actions->First()->Name();
13 return "{$action}_options";