You are here

interface ConditionalFieldValueInterface in Conditional Fields 8

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

Interface ConditionalFieldValueInterface @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 9

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();

  /**
   * The target field is Visible when the control field has value from Regular expression.
   */
  public function testVisibleValueRegExp();

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

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

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

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

}

Members

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