X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FEvents.php;h=693da01521775c9bdb76190256de24b4966c23a8;hb=a5318fc09ab79ac5dc968b7557f934163a0762d6;hp=42912d60494bd5a07ed6f20753488899f44e3cca;hpb=3119d6e80fd2ee7f393f92c6d98e13431b0bc379;p=Pman.Core diff --git a/DataObjects/Events.php b/DataObjects/Events.php index 42912d60..693da015 100644 --- a/DataObjects/Events.php +++ b/DataObjects/Events.php @@ -107,13 +107,6 @@ class Pman_Core_DataObjects_Events extends DB_DataObject } */ - if (!$au->hasPerm("Admin.Admin_Tab", 'S')) { - //DB_DataObject::DebugLevel(1); - // they can only view their changes.. - $this->whereAdd("($tn.person_id = {$au->id} OR $tn.person_id = 0)"); -// $this->person_id = $au->id; - - } // _join = tablename,tablename... /// on_table=cohead @@ -218,7 +211,7 @@ class Pman_Core_DataObjects_Events extends DB_DataObject $roo->jerr("ontable is invalid"); } - if (!method_exists($obj,'relatedWhere') && !method_exists($obj,'relatedEventsWhere')) { + if (!method_exists($obj,'relatedWhere')) { $roo->jerr( $q['_related_on_table'] . " Does not have method relatedWhere or relatedEventsWhere:" . implode(',', get_class_methods($obj))); } @@ -243,21 +236,8 @@ class Pman_Core_DataObjects_Events extends DB_DataObject $this->whereAdd(implode(' OR ' , $w)); } - if ($obj && method_exists($obj,'relatedEventsWhere')) { - $a = $obj->relatedEventsWhere($q,$roo); - if($a){ - $this->whereAdd($a); - } - } - - - + - } - if (!isset($q['_who'])) { - $this->autoJoinExtData(); - $this->autoJoinCorePerson(); - $this->selectAddWho(); } // since roo does not support autojoin yet.. @@ -276,8 +256,16 @@ class Pman_Core_DataObjects_Events extends DB_DataObject } } - + function applyPermissionFilters($q, $au ,$roo) + { + if (!$au->hasPerm("Admin.Admin_Tab", 'S')) { + //DB_DataObject::DebugLevel(1); + // they can only view their changes.. + $this->whereAdd("($tn.person_id = {$au->id} OR $tn.person_id = 0)"); +// $this->person_id = $au->id; + } + } /** * check who is trying to access this. false == access denied.. @@ -495,14 +483,16 @@ class Pman_Core_DataObjects_Events extends DB_DataObject $user = getenv('USERNAME'); // windows. } - // DEPRICATED... + + + if (!empty($ff->Pman['storedir'])) { + return $ff->Pman['storedir'] .'/Events/'.$user; + } + // DEPRICATED... if (!empty($ff->Pman['event_log_dir'])) { return $ff->Pman['event_log_dir'] . '/'.$user; } - if (!empty($ff->Pman['storedir'])) { - return $ff->Pman['storedir'] .'/Events/'.$user; - } return false; } @@ -522,6 +512,7 @@ class Pman_Core_DataObjects_Events extends DB_DataObject @mkdir(dirname($file),0700,true); // this might fail if it does not have correct permissions.. if (!file_exists(dirname($file))) { + print_r($this); die("could not create $file - permissons are not correct"); // fatal, otherwise we loop!? } @@ -721,32 +712,5 @@ class Pman_Core_DataObjects_Events extends DB_DataObject } - function autoJoinExtData() - { - $this->_join .= "LEFT JOIN - ext_data AS ext_data_id - ON - Events.modx_users_id = ext_data_id.userdata_id"; - } - function autoJoinCorePerson() - { - $this->_join .= "LEFT JOIN - core_person AS core_person_id - ON - Events.person_id = core_person_id.id"; - } - - function selectAddWho() - { - $this->selectAdd(" - core_person_id.name AS person_name, - CASE - WHEN ext_data_id.in_middlename='' THEN - CONCAT_WS(' ', ext_data_id.in_firstname,ext_data_id.in_lastname) - ELSE - CONCAT_WS(' ', ext_data_id.in_firstname,ext_data_id.in_middlename,ext_data_id.in_lastname) - END AS ext_data_full_name - "); - } }