relatives
This commit is contained in:
@@ -379,6 +379,11 @@ define('WRENCHBOARD_FAMILY_SGGESTWAITING', 22030);
|
||||
define('WRENCHBOARD_FAMILY_RELINVITE', 22031);
|
||||
define('WRENCHBOARD_FAMILY_RELLIST', 22032);
|
||||
|
||||
define('WRENCHBOARD_RELATIVES_SETTINGS', 22033);
|
||||
define('WRENCHBOARD_RELATIVES_EDITKIDS', 22034);
|
||||
define('WRENCHBOARD_RELATIVES_REMINDER', 22035);
|
||||
|
||||
|
||||
define('WRENCHBOARD_SMONEY_ADDRECIPIENT', 33010);
|
||||
define('WRENCHBOARD_SMONEY_MEMBER', 33020);
|
||||
define('WRENCHBOARD_SMONEY_PROCFEE', 33025);
|
||||
|
||||
@@ -18,12 +18,22 @@ class WrenchFamily extends BaseController
|
||||
$raw_json = file_get_contents('php://input');
|
||||
$in = json_decode($raw_json, true);
|
||||
$out =[];
|
||||
|
||||
$in["action"] = WRENCHBOARD_RELATIVES_EDITKIDS;
|
||||
$ret = $this->wrenchboard->wrenchboard_api($in, $out);
|
||||
$out['internal_return'] = $ret;
|
||||
|
||||
return $this->summaryReturnData($in,$out);
|
||||
}
|
||||
public function relativeSettings(){
|
||||
$raw_json = file_get_contents('php://input');
|
||||
$in = json_decode($raw_json, true);
|
||||
$out =[];
|
||||
|
||||
$in["action"] = WRENCHBOARD_RELATIVES_SETTINGS;
|
||||
$ret = $this->wrenchboard->wrenchboard_api($in, $out);
|
||||
$out['internal_return'] = $ret;
|
||||
|
||||
return $this->summaryReturnData($in,$out);
|
||||
}
|
||||
public function relativeReminder(){
|
||||
|
||||
Reference in New Issue
Block a user