X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=GroupCountries.php;h=e694d8d8668675773cd932c36d01202837cbae7e;hp=fbdc69127d52b8189da6b122289b51d66855abd7;hb=a1a3ecba68d2fedabc8203e88b40759401d7472d;hpb=ba87a4e7de05bc2b77cc3ed77502d3b87b4b0fd5 diff --git a/GroupCountries.php b/GroupCountries.php index fbdc6912..e694d8d8 100644 --- a/GroupCountries.php +++ b/GroupCountries.php @@ -23,13 +23,60 @@ class Pman_Core_GroupCountries extends Pman $this->authUser = $au; return true; } - function get() + + function get($v, $opts=array()) { - $this->post(); + $this->post($v); } - function post() + + function post($v) { + if (!$this->hasPerm( 'Core.Groups','E')) { // editing groups.. + $this->jerr("PERMISSION DENIED"); + } + + $users = explode(',', $_REQUEST['user_ids']); + $cls = $_REQUEST['action'].'PersonToCountry';// add or sup + $this->$cls($users); + + print_r($_REQUEST); + } + + function addPersonToCountry($users) + { + foreach($users as $id){ + $p = DB_DataObject::factory('core_person'); + if(!$p->get($id)){ + $this->jerr('This Person is not exsiting'); + } + $c = explode(',', $p->countries); + $c[] = $_REQUEST['country']; + sort($c); +// print_r($c); + $p->countries = implode(',', $c); + $p->update(); + } + $this->jok(true); + } + + function subPersonToCountry($users) + { + foreach($users as $id){ + $p = DB_DataObject::factory('core_person'); + if(!$p->get($id)){ + $this->jerr('This Person is not exsiting'); + } + $c = explode(',', $p->countries); + if(($key = array_search($_REQUEST['country'], $c)) !== false) { + unset($c[$key]); + } + sort($c); +// print_r($c); + $p->countries = implode(',', $c); + $p->update(); + } + $this->jok(true); } }