Condition.php

Same filename in this branch
  1. 11.x core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Condition.php
  2. 11.x core/lib/Drupal/Core/Config/Entity/Query/Condition.php
  3. 11.x core/lib/Drupal/Core/Database/Query/Condition.php
  4. 11.x core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
  5. 11.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php
  6. 11.x core/lib/Drupal/Core/Entity/Query/Null/Condition.php
  7. 11.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php
  8. 11.x core/lib/Drupal/Core/Condition/Attribute/Condition.php
Same filename and directory in other branches
  1. 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Condition.php
  2. 9 core/lib/Drupal/Core/Config/Entity/Query/Condition.php
  3. 9 core/lib/Drupal/Core/Database/Query/Condition.php
  4. 9 core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
  5. 9 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php
  6. 9 core/lib/Drupal/Core/Entity/Query/Null/Condition.php
  7. 9 core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php
  8. 9 core/lib/Drupal/Core/Condition/Annotation/Condition.php
  9. 8.9.x core/lib/Drupal/Core/Config/Entity/Query/Condition.php
  10. 8.9.x core/lib/Drupal/Core/Database/Query/Condition.php
  11. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
  12. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php
  13. 8.9.x core/lib/Drupal/Core/Entity/Query/Null/Condition.php
  14. 8.9.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php
  15. 8.9.x core/lib/Drupal/Core/Condition/Annotation/Condition.php
  16. 10 core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Condition.php
  17. 10 core/lib/Drupal/Core/Config/Entity/Query/Condition.php
  18. 10 core/lib/Drupal/Core/Database/Query/Condition.php
  19. 10 core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
  20. 10 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php
  21. 10 core/lib/Drupal/Core/Entity/Query/Null/Condition.php
  22. 10 core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php
  23. 10 core/lib/Drupal/Core/Condition/Attribute/Condition.php
  24. 10 core/lib/Drupal/Core/Condition/Annotation/Condition.php

Namespace

Drupal\Core\Condition\Annotation

File

core/lib/Drupal/Core/Condition/Annotation/Condition.php

View source
<?php

namespace Drupal\Core\Condition\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a condition plugin annotation object.
 *
 * Condition plugins provide generalized conditions for use in other
 * operations, such as conditional block placement.
 *
 * Plugin Namespace: Plugin\Condition
 *
 * For a working example, see \Drupal\user\Plugin\Condition\UserRole.
 *
 * @see \Drupal\Core\Condition\ConditionManager
 * @see \Drupal\Core\Condition\ConditionInterface
 * @see \Drupal\Core\Condition\ConditionPluginBase
 * @see block_api
 *
 * @ingroup plugin_api
 *
 * @Annotation
 */
class Condition extends Plugin {
    
    /**
     * The condition plugin ID.
     *
     * @var string
     */
    public $id;
    
    /**
     * The human-readable name of the condition.
     *
     * @ingroup plugin_translatable
     *
     * @var \Drupal\Core\Annotation\Translation
     */
    public $label;
    
    /**
     * The name of the module providing the type.
     *
     * @var string
     */
    public $module;
    
    /**
     * An array of context definitions describing the context used by the plugin.
     *
     * The array is keyed by context names.
     *
     * @var \Drupal\Core\Annotation\ContextDefinition[]
     */
    public $context_definitions = [];
    
    /**
     * The category under which the condition should listed in the UI.
     *
     * @var \Drupal\Core\Annotation\Translation
     *
     * @ingroup plugin_translatable
     */
    public $category;

}

Classes

Title Deprecated Summary
Condition Defines a condition plugin annotation object.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.