X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=RooTrait.php;h=9a929f1ec7a527cfc29d6683860cac046aa4266d;hp=fa637d1a157d463d5da2ae647e04a686fd775b35;hb=a1a3ecba68d2fedabc8203e88b40759401d7472d;hpb=9c6ab463d0aa1a141c40d0a29482dcaaa76bb49d diff --git a/RooTrait.php b/RooTrait.php index fa637d1a..9a929f1e 100644 --- a/RooTrait.php +++ b/RooTrait.php @@ -92,7 +92,7 @@ trait Pman_Core_RooTrait { if (!is_array($id) && empty($id)) { if (method_exists($x, 'toRooSingleArray')) { - $this->jok($x->toRooSingleArray($this->getAuthUser(), $req)); + $this->jok($x->toRooSingleArray($this->authUser, $req)); } if (method_exists($x, 'toRooArray')) { @@ -106,8 +106,6 @@ trait Pman_Core_RooTrait { 'columns' => $_columns, )); - exit; - if ($req !== false) { $this->setFilters($x, $req); } @@ -134,7 +132,7 @@ trait Pman_Core_RooTrait { } // different symantics on all these calls?? if (method_exists($x, 'toRooSingleArray')) { - $this->jok($x->toRooSingleArray($this->getAuthUser(), $req)); + $this->jok($x->toRooSingleArray($this->authUser, $req)); } if (method_exists($x, 'toRooArray')) { $this->jok($x->toRooArray($req)); @@ -154,7 +152,7 @@ trait Pman_Core_RooTrait { $excludecolumns = !empty($cfg['exclude']) ? $cfg['exclude'] : array(); $excludecolumns[] = 'passwd'; // we never expose passwords - + $ret = $do->autoJoin(array( 'include' => $onlycolumns, 'exclude' => $excludecolumns, @@ -173,7 +171,7 @@ trait Pman_Core_RooTrait { { if (method_exists($x, 'applyFilters')) { // DB_DataObject::debugLevel(1); - if (false === $x->applyFilters($q, $this->getAuthUser(), $this)) { + if (false === $x->applyFilters($q, $this->authUser, $this)) { return; } } @@ -259,7 +257,7 @@ trait Pman_Core_RooTrait { $x->whereAdd("(on_id = $oid OR on_id IN ( SELECT distinct(id) FROM Documents WHERE original = $o ) )"); - continue; + continue 2; } $x->on_id = $val; @@ -283,7 +281,7 @@ trait Pman_Core_RooTrait { } - continue; + continue 2; } } if (!empty($q_filtered)) { @@ -312,7 +310,7 @@ trait Pman_Core_RooTrait { return; } - if (Pman::$permitError) { + if (self::$permitError) { return; @@ -370,7 +368,7 @@ trait Pman_Core_RooTrait { if (!method_exists($obj, 'checkPerm')) { return true; } - if ($obj->checkPerm($lvl, $this->getAuthUser(), $req)) { + if ($obj->checkPerm($lvl, $this->authUser, $req)) { return true; }