ConditionalFieldFilledEmptyInterface.php in Conditional Fields 8
Same filename and directory in other branches
File
tests/src/FunctionalJavascript/TestCases/ConditionalFieldFilledEmptyInterface.phpView source
<?php
namespace Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases;
/**
* Interface ConditionalFieldFilledEmptyInterface
* @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
Name | Description |
---|---|
ConditionalFieldFilledEmptyInterface | Interface ConditionalFieldFilledEmptyInterface @package Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases |