X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FSMS%2FForm%2FGroup.php;h=45064eac361110f8e9b361e5a97414adc99f76d3;hb=d25dd0ee5e47188c3ea9ad2918f627cfac97ddbd;hp=66f62ff850f629b12169a0bba5b0a16d106c9c6c;hpb=5667521530926d61b370a4bb0806b7e5ad63ccbc;p=civicrm-core.git diff --git a/CRM/SMS/Form/Group.php b/CRM/SMS/Form/Group.php index 66f62ff850..45064eac36 100644 --- a/CRM/SMS/Form/Group.php +++ b/CRM/SMS/Form/Group.php @@ -23,7 +23,7 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * @@ -166,8 +166,9 @@ class CRM_SMS_Form_Group extends CRM_Contact_Form_Task { $this->addFormRule(array('CRM_SMS_Form_Group', 'formRule')); $buttons = array( - array('type' => 'next', - 'name' => ts('Next >>'), + array( + 'type' => 'next', + 'name' => ts('Next'), 'spacing' => '                 ', 'isDefault' => TRUE, ), @@ -189,7 +190,10 @@ class CRM_SMS_Form_Group extends CRM_Contact_Form_Task { $groups = array(); foreach (array( - 'name', 'group_id', 'is_sms') as $n) { + 'name', + 'group_id', + 'is_sms', + ) as $n) { if (!empty($values[$n])) { $params[$n] = $values[$n]; } @@ -198,9 +202,9 @@ class CRM_SMS_Form_Group extends CRM_Contact_Form_Task { $qf_Group_submit = $this->controller->exportValue($this->_name, '_qf_Group_submit'); $this->set('name', $params['name']); - $inGroups = $values['includeGroups']; - $outGroups = $values['excludeGroups']; - $inMailings = $values['includeMailings']; + $inGroups = $values['includeGroups']; + $outGroups = $values['excludeGroups']; + $inMailings = $values['includeMailings']; $outMailings = $values['excludeMailings']; if (is_array($inGroups)) { @@ -234,10 +238,10 @@ class CRM_SMS_Form_Group extends CRM_Contact_Form_Task { } } - $session = CRM_Core_Session::singleton(); - $params['groups'] = $groups; + $session = CRM_Core_Session::singleton(); + $params['groups'] = $groups; $params['mailings'] = $mailings; - $ids = array(); + $ids = array(); if ($this->get('mailing_id')) { // don't create a new mass sms if already exists @@ -248,9 +252,11 @@ class CRM_SMS_Form_Group extends CRM_Contact_Form_Task { // delete previous includes/excludes, if mailing already existed foreach (array( - 'groups', 'mailings') as $entity) { - $mg = new CRM_Mailing_DAO_MailingGroup(); - $mg->mailing_id = $ids['mailing_id']; + 'groups', + 'mailings', + ) as $entity) { + $mg = new CRM_Mailing_DAO_MailingGroup(); + $mg->mailing_id = $ids['mailing_id']; $mg->entity_table = ($entity == 'groups') ? $groupTableName : $mailingTableName; $mg->find(); while ($mg->fetch()) { @@ -306,10 +312,11 @@ class CRM_SMS_Form_Group extends CRM_Contact_Form_Task { /** * Global validation rules for the form * - * @param array $fields posted values of the form + * @param array $fields + * Posted values of the form. * - * @return array list of errors to be posted back to the form - * @static + * @return array + * list of errors to be posted back to the form */ public static function formRule($fields) { $errors = array(); @@ -339,4 +346,5 @@ class CRM_SMS_Form_Group extends CRM_Contact_Form_Task { return empty($errors) ? TRUE : $errors; } + }