LdapTools\Schema\LdapObjectSchema::getObjectCategory PHP Method

getObjectCategory() public method

Get the objectCategory that this schema object refers to.
public getObjectCategory ( ) : string
return string
    public function getObjectCategory()
    {
        return $this->objectCategory;
    }

Usage Example

Esempio n. 1
0
 /**
  * Given a schema object and a filter array, construct the operator to be used for the schema.
  *
  * @param LdapObjectSchema $schema
  * @param array $filter
  * @return BaseOperator
  */
 public function getOperatorForSchema(LdapObjectSchema $schema, array $filter)
 {
     $operator = null;
     $categoryOperator = $this->getCategoryOperator($schema->getObjectCategory());
     $classOperator = $this->getClassOperator($schema->getObjectClass());
     if ($classOperator && $categoryOperator) {
         $operator = $this->filterBuilder->bAnd($categoryOperator, $classOperator);
     } elseif ($categoryOperator) {
         $operator = $categoryOperator;
     } elseif ($classOperator) {
         $operator = $classOperator;
     }
     return $this->getOperatorForArray($filter, $operator);
 }
All Usage Examples Of LdapTools\Schema\LdapObjectSchema::getObjectCategory