コード例 #1
0
 public function postProcess()
 {
     $values = $this->exportValues();
     // store settings
     $expected_values = array('hh_mode', 'hh_head_mode', 'hh_member_relation', 'hh_head_relation');
     foreach ($expected_values as $key) {
         if (isset($values[$key])) {
             CRM_Householdmerge_Logic_Configuration::setConfigValue($key, $values[$key]);
         }
     }
     parent::postProcess();
 }