There are some not defined functions for efq::execute

PS: Perhaps there should be added a component for the entity system.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dawehner’s picture

FileSize
1.21 KB

this fixes some doc and a not defined variable.


  public function processProperty(SelectQuery $select_query, $entity_base_table) {
    foreach ($this->propertyConditions as $entity_condition) {
      $this->addCondition($select_query, "$entity_base_table." . $entity_condition['column'], $entity_condition);
    }
    foreach ($this->propertyOrder as $order) {
      $select_query->orderBy("$entity_base_table." . $order['column'], $order['direction']);
    }
    unset($this->propertyConditions, $this->propertyOrder);
  }
retester2010’s picture

#1: drupal-efq-execute.patch queued for re-testing.

Status: Needs review » Needs work

The last submitted patch, drupal-efq-execute.patch, failed testing.