Copy all the users from one group to another. You must specify the status ID(s) of users you wish to include in the copy.
Arguments:
Use:
require_once('../../MyEmmaPHP.php');
try {
$me = new MyEmmaPHP();
$from_group = 17764;
$to_group = 10596;
$member_status_id = 'a';
$retval = $me->copyGroupToGroup($from_group, $to_group, $member_status_id);
print_r($retval);
} catch ( Exception $e ) {
echo $e->getMessage() . "\n\n";
}
Wrapper for: copy_group_to_group
People talking about '@synergycode':