You are here

interface ConditionalFieldValueInterface in Conditional Fields 4.x

Same name and namespace in other branches
  1. 8 tests/src/FunctionalJavascript/TestCases/ConditionalFieldValueInterface.php \Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases\ConditionalFieldValueInterface

Outline tests for field types that have visible values.

@package Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases

Hierarchy

Expanded class hierarchy of ConditionalFieldValueInterface

All classes that implement ConditionalFieldValueInterface

14 files declare their use of ConditionalFieldValueInterface
ConditionalFieldCheckboxesTest.php in tests/src/FunctionalJavascript/ConditionalFieldCheckboxesTest.php
ConditionalFieldDateListTest.php in tests/src/FunctionalJavascript/ConditionalFieldDateListTest.php
ConditionalFieldDateTimeTest.php in tests/src/FunctionalJavascript/ConditionalFieldDateTimeTest.php
ConditionalFieldEmailTest.php in tests/src/FunctionalJavascript/ConditionalFieldEmailTest.php
ConditionalFieldEntityReferenceTest.php in tests/src/FunctionalJavascript/ConditionalFieldEntityReferenceTest.php

... See full list

File

tests/src/FunctionalJavascript/TestCases/ConditionalFieldValueInterface.php, line 10

Namespace

Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases
View source
interface ConditionalFieldValueInterface {

  /**
   * The target field is Visible when the control field has value from Widget.
   */
  public function testVisibleValueWidget();

  /**
   * Target field is Visible when the control field has value from regex.
   */
  public function testVisibleValueRegExp();

  /**
   * Target field is Visible when control field has value with AND condition.
   */
  public function testVisibleValueAnd();

  /**
   * Target field is Visible when the control field has value with OR condition.
   */
  public function testVisibleValueOr();

  /**
   * Target field is Visible when control field has value with NOT condition.
   */
  public function testVisibleValueNot();

  /**
   * Target field is Visible when control field has value with XOR condition.
   */
  public function testVisibleValueXor();

}

Members

Namesort descending Modifiers Type Description Overrides
ConditionalFieldValueInterface::testVisibleValueAnd public function Target field is Visible when control field has value with AND condition. 14
ConditionalFieldValueInterface::testVisibleValueNot public function Target field is Visible when control field has value with NOT condition. 14
ConditionalFieldValueInterface::testVisibleValueOr public function Target field is Visible when the control field has value with OR condition. 14
ConditionalFieldValueInterface::testVisibleValueRegExp public function Target field is Visible when the control field has value from regex. 14
ConditionalFieldValueInterface::testVisibleValueWidget public function The target field is Visible when the control field has value from Widget. 14
ConditionalFieldValueInterface::testVisibleValueXor public function Target field is Visible when control field has value with XOR condition. 14