You are here

interface ConditionalFieldFilledEmptyInterface in Conditional Fields 4.x

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

Outline tests for fields types that can be filled or empty.

@package Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases

Hierarchy

Expanded class hierarchy of ConditionalFieldFilledEmptyInterface

All classes that implement ConditionalFieldFilledEmptyInterface

4 files declare their use of ConditionalFieldFilledEmptyInterface
ConditionalFieldEmailTest.php in tests/src/FunctionalJavascript/ConditionalFieldEmailTest.php
ConditionalFieldEntityReferenceTest.php in tests/src/FunctionalJavascript/ConditionalFieldEntityReferenceTest.php
ConditionalFieldLinkFieldTest.php in tests/src/FunctionalJavascript/ConditionalFieldLinkFieldTest.php
ConditionalFieldTextfieldTest.php in tests/src/FunctionalJavascript/ConditionalFieldTextfieldTest.php

File

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

Namespace

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

  /**
   * The target field is Visible when the control field is Filled.
   */
  public function testVisibleFilled();

  /**
   * The target field is Visible when the control field is Empty.
   */
  public function testVisibleEmpty();

  /**
   * The target field is Invisible when the control field is Filled.
   */
  public function testInvisibleFilled();

  /**
   * The target field is Invisible when the control field is Empty.
   */
  public function testInvisibleEmpty();

}

Members

Namesort descending Modifiers Type Description Overrides
ConditionalFieldFilledEmptyInterface::testInvisibleEmpty public function The target field is Invisible when the control field is Empty. 4
ConditionalFieldFilledEmptyInterface::testInvisibleFilled public function The target field is Invisible when the control field is Filled. 4
ConditionalFieldFilledEmptyInterface::testVisibleEmpty public function The target field is Visible when the control field is Empty. 4
ConditionalFieldFilledEmptyInterface::testVisibleFilled public function The target field is Visible when the control field is Filled. 4