|
@@ -529,6 +529,11 @@ class AntAclBase extends Core_AclBase {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public function getSqlPrimaryKeyField() { return $this->_primaryKey; }
|
|
public function getSqlPrimaryKeyField() { return $this->_primaryKey; }
|
|
|
|
|
+ public function getSqlFieldName($fieldName) {
|
|
|
|
|
+ $field = $this->_getField($fieldName);
|
|
|
|
|
+ if ($field['isLocal']) return $field['fieldNamespace'];
|
|
|
|
|
+ return $fieldName; // TODO: throw new Exception("Field is not local");
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
public function getTotal($params = []) {
|
|
public function getTotal($params = []) {
|
|
|
DBG::log($params, 'array', "AntAclBase::getTotal params");
|
|
DBG::log($params, 'array', "AntAclBase::getTotal params");
|