X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=GroupCountries.php;h=e694d8d8668675773cd932c36d01202837cbae7e;hp=150a65b40785d7369f49d8868d10a9f39b2bd335;hb=c1af5e6bb6064e88469651271f4d9aaff34d69c0;hpb=b0c44a9fc0bdf79ff91d53a8b6d3a616393db312 diff --git a/GroupCountries.php b/GroupCountries.php index 150a65b4..e694d8d8 100644 --- a/GroupCountries.php +++ b/GroupCountries.php @@ -24,12 +24,12 @@ class Pman_Core_GroupCountries extends Pman 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"); @@ -46,22 +46,24 @@ class Pman_Core_GroupCountries extends Pman function addPersonToCountry($users) { foreach($users as $id){ - $p = DB_DataObject::factory('Person'); + $p = DB_DataObject::factory('core_person'); if(!$p->get($id)){ $this->jerr('This Person is not exsiting'); } $c = explode(',', $p->countries); $c[] = $_REQUEST['country']; - ksort($c); + sort($c); +// print_r($c); $p->countries = implode(',', $c); $p->update(); } + $this->jok(true); } - function supPersonToCountry($users) + function subPersonToCountry($users) { foreach($users as $id){ - $p = DB_DataObject::factory('Person'); + $p = DB_DataObject::factory('core_person'); if(!$p->get($id)){ $this->jerr('This Person is not exsiting'); } @@ -69,12 +71,12 @@ class Pman_Core_GroupCountries extends Pman if(($key = array_search($_REQUEST['country'], $c)) !== false) { unset($c[$key]); } - ksort($c); - print_r($c); -// $p->countries = implode(',', $c); -// $p->update(); + sort($c); +// print_r($c); + $p->countries = implode(',', $c); + $p->update(); } - + $this->jok(true); } }