You are here

ConditionalFieldFilledEmptyInterface.php in Conditional Fields 4.x

File

tests/src/FunctionalJavascript/TestCases/ConditionalFieldFilledEmptyInterface.php
View source
<?php

namespace Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases;


/**
 * Outline tests for fields types that can be filled or empty.
 *
 * @package Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases
 */
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();

}

Interfaces

Namesort descending Description
ConditionalFieldFilledEmptyInterface Outline tests for fields types that can be filled or empty.