ConditionalFieldCheckedUncheckedInterface.php in Conditional Fields 4.x
Same filename and directory in other branches
File
tests/src/FunctionalJavascript/TestCases/ConditionalFieldCheckedUncheckedInterface.phpView source
<?php
namespace Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases;
/**
* Outline tests for field types that can be both (in)visible and (un)checked.
*
* @package Drupal\Tests\conditional_fields\FunctionalJavascript\TestCases
*/
interface ConditionalFieldCheckedUncheckedInterface {
/**
* The target field is Visible when the control field is Checked.
*/
public function testVisibleChecked();
/**
* The target field is Visible when the control field is Unchecked.
*/
public function testVisibleUnchecked();
/**
* The target field is Invisible when the control field is Unchecked.
*/
public function testInvisibleUnchecked();
}
Interfaces
Name | Description |
---|---|
ConditionalFieldCheckedUncheckedInterface | Outline tests for field types that can be both (in)visible and (un)checked. |