Example #1
0
 /**
  * Return a new query for the given columns
  *
  * @param   array   $columns    The desired columns, if null all columns will be queried
  *
  * @return  RepositoryQuery
  */
 public function select(array $columns = null)
 {
     $query = parent::select($columns);
     $query->getQuery()->setBase($this->baseDn);
     if ($this->filter) {
         $query->getQuery()->where(new Expression($this->filter));
     }
     return $query;
 }
 /**
  * Validate that the given column is a valid query target and return it or the actual name if it's an alias
  *
  * @param   string              $table  The table where to look for the column or alias
  * @param   string              $name   The name or alias of the column to validate
  * @param   RepositoryQuery     $query  An optional query to pass as context
  *
  * @return  string                      The given column's name
  *
  * @throws  QueryException              In case the given column is not a valid query column
  */
 public function requireQueryColumn($table, $name, RepositoryQuery $query = null)
 {
     $column = parent::requireQueryColumn($table, $name, $query);
     if ($name === 'user_name' && $query !== null) {
         $query->getQuery()->setUnfoldAttribute('user_name');
     }
     return $column;
 }
 /**
  * Return a new query for the given columns
  *
  * @param   array   $columns    The desired columns, if null all columns will be queried
  *
  * @return  RepositoryQuery
  */
 public function select(array $columns = null)
 {
     $query = parent::select($columns);
     $query->getQuery()->setBase($this->groupBaseDn);
     if ($this->groupFilter) {
         // TODO(jom): This should differentiate between groups and their memberships
         $query->getQuery()->where(new Expression($this->groupFilter));
     }
     return $query;
 }