Unchecked.php in Field States UI 8
Same filename and directory in other branches
Namespace
Drupal\field_states_ui\Plugin\FieldStateFile
src/Plugin/FieldState/Unchecked.phpView source
<?php
namespace Drupal\field_states_ui\Plugin\FieldState;
use Drupal\field_states_ui\FieldStateBase;
/**
* Controls checkbox field widget unchecked state in relation to other fields.
*
* @FieldState(
* id = "unchecked",
* label = @Translation("Unchecked"),
* description = @Translation("Dynamically uncheck checkbox dependent on other field states/values.")
* )
*/
class Unchecked extends FieldStateBase {
}