X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FNote%2FForm%2FNote.php;h=4ebc846bc18718f1564c6970f6c29a8da0b905da;hb=a2a44aff3a996688b6777c60ff3af57dcba8f3b9;hp=e2d65e1c10f57d7501c671b328965692d1b3932f;hpb=90b7caa58a9c7436210afc00da170d044e00d053;p=civicrm-core.git diff --git a/CRM/Note/Form/Note.php b/CRM/Note/Form/Note.php index e2d65e1c10..4ebc846bc1 100644 --- a/CRM/Note/Form/Note.php +++ b/CRM/Note/Form/Note.php @@ -1,34 +1,18 @@ _action & CRM_Core_Action::UPDATE) { if (isset($this->_id)) { @@ -133,18 +117,17 @@ class CRM_Note_Form_Note extends CRM_Core_Form { */ public function buildQuickForm() { if ($this->_action & CRM_Core_Action::DELETE) { - $this->addButtons(array( - array( + $this->addButtons([ + [ 'type' => 'next', 'name' => ts('Delete'), 'isDefault' => TRUE, - ), - array( + ], + [ 'type' => 'cancel', 'name' => ts('Cancel'), - ), - ) - ); + ], + ]); return; } @@ -156,17 +139,17 @@ class CRM_Note_Form_Note extends CRM_Core_Form { // add attachments part CRM_Core_BAO_File::buildAttachment($this, 'civicrm_note', $this->_id, NULL, TRUE); - $this->addButtons(array( - array( + $this->addButtons([ + [ 'type' => 'upload', 'name' => ts('Save'), 'isDefault' => TRUE, - ), - array( + ], + [ 'type' => 'cancel', 'name' => ts('Cancel'), - ), - ) + ], + ] ); } @@ -203,7 +186,7 @@ class CRM_Note_Form_Note extends CRM_Core_Form { // add attachments as needed CRM_Core_BAO_File::formatAttachment($params, $params, 'civicrm_note', $params['id']); - $ids = array(); + $ids = []; $note = CRM_Core_BAO_Note::add($params, $ids); CRM_Core_Session::setStatus(ts('Your Note has been saved.'), ts('Saved'), 'success');