X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FEvents.php;h=446c246be5be10f472b82bc8c327d36d95375a78;hb=921e80faa46ea5b70ad2eef7f61be3dae69fdde9;hp=38f23afea04c9069ed1c742d0326fb79ff2799f3;hpb=04ceb3d9410dd1276a4f0f53549d81496bf7ecdf;p=Pman.Core diff --git a/DataObjects/Events.php b/DataObjects/Events.php index 38f23afe..446c246b 100644 --- a/DataObjects/Events.php +++ b/DataObjects/Events.php @@ -74,12 +74,12 @@ class Pman_Core_DataObjects_Events extends DB_DataObject } $jt = DB_DataObject::factory($person); - $this->whereAdd(" - person_table = '{$jt->tableName()}' - OR - person_table = '' - OR person_table IS NULL" - ); // default to our standard.. - unless otherwise requested.. + //$this->whereAdd(" + // person_table = '{$jt->tableName()}' + // OR + // person_table = '' + // OR person_table IS NULL" + //); // default to our standard.. - unless otherwise requested.. } @@ -321,6 +321,9 @@ class Pman_Core_DataObjects_Events extends DB_DataObject } $this->person_name = $au && !empty($au->name) ? $au->name : ''; + //print_r($au); + //exit; + //$this->who = $au && !empty($au->name) ? $au->name : ''; if (empty($au) || (isset($au->id) && empty($au->id))) { // not authenticated - and a standard id based object $this->person_id = 0; @@ -331,6 +334,20 @@ class Pman_Core_DataObjects_Events extends DB_DataObject $col = isset($cols[$col]) ? $col : 'person_id'; // for BC.... - revert to using person_id $this->{$col} = $au->pid(); //$this->person_id = $au ? (!empty($au->id) ? $au->id : $au->pid()) : -1; + + $this->who = $au->name; + + if($au->tableName() == "modx_users"){ + $e = PDO_DataObject::factory('ext_data'); + $e->setFrom(array( + 'userdata_id' => $au->pid(), + )); + if($e->find(true)){ + $this->who = $e->getUserName(); + print_r($this); + exit; + } + } } $this->person_table = $au ? $au->tableName() : ''; $this->ipaddr = isset($_SERVER["REMOTE_ADDR"]) ? $_SERVER["REMOTE_ADDR"] : 'cli';