You are here

class Test in farmOS 2.x

Same name in this branch
  1. 2.x modules/core/quick/tests/modules/farm_quick_test/src/Plugin/QuickForm/Test.php \Drupal\farm_quick_test\Plugin\QuickForm\Test
  2. 2.x modules/asset/group/tests/modules/farm_group_test/src/Plugin/Log/LogType/Test.php \Drupal\farm_group_test\Plugin\Log\LogType\Test
  3. 2.x modules/asset/equipment/tests/modules/farm_entity_test/src/Plugin/Log/LogType/Test.php \Drupal\farm_equipment_test\Plugin\Log\LogType\Test
  4. 2.x modules/core/entity/tests/modules/farm_entity_test/src/Plugin/Log/LogType/Test.php \Drupal\farm_entity_test\Plugin\Log\LogType\Test
  5. 2.x modules/core/entity/tests/modules/farm_entity_test/src/Plugin/Asset/AssetType/Test.php \Drupal\farm_entity_test\Plugin\Asset\AssetType\Test
  6. 2.x modules/core/entity/tests/modules/farm_entity_test/src/Plugin/Plan/PlanType/Test.php \Drupal\farm_entity_test\Plugin\Plan\PlanType\Test

Provides the test log type.

Plugin annotation


@LogType(
  id = "test",
  label = @Translation("Test"),
)

Hierarchy

Expanded class hierarchy of Test

10 string references to 'Test'
asset.type.test.yml in modules/core/entity/tests/modules/farm_entity_test/config/install/asset.type.test.yml
modules/core/entity/tests/modules/farm_entity_test/config/install/asset.type.test.yml
asset.type.test.yml in modules/core/log/tests/modules/farm_log_query_test/config/install/asset.type.test.yml
modules/core/log/tests/modules/farm_log_query_test/config/install/asset.type.test.yml
asset.type.test.yml in modules/core/quick/tests/modules/farm_quick_test/config/install/asset.type.test.yml
modules/core/quick/tests/modules/farm_quick_test/config/install/asset.type.test.yml
log.type.test.yml in modules/asset/group/tests/modules/farm_group_test/config/install/log.type.test.yml
modules/asset/group/tests/modules/farm_group_test/config/install/log.type.test.yml
log.type.test.yml in modules/asset/equipment/tests/modules/farm_entity_test/config/install/log.type.test.yml
modules/asset/equipment/tests/modules/farm_entity_test/config/install/log.type.test.yml

... See full list

File

modules/core/entity/tests/modules/farm_entity_test/src/Plugin/Log/LogType/Test.php, line 15

Namespace

Drupal\farm_entity_test\Plugin\Log\LogType
View source
class Test extends FarmLogType {

  /**
   * {@inheritdoc}
   */
  public function buildFieldDefinitions() {
    $fields = parent::buildFieldDefinitions();

    // Add a test field to all Log bundles.
    $options = [
      'type' => 'string',
      'label' => $this
        ->t('Test default bundle field'),
    ];
    $fields['test_default_bundle_field'] = $this->farmFieldFactory
      ->bundleFieldDefinition($options);
    return $fields;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
FarmEntityTypeBase::$farmFieldFactory protected property The farm_field.factory service.
FarmEntityTypeBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
FarmEntityTypeBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase::__construct
LogTypeBase::getLabel public function Gets the log type label. Overrides LogTypeInterface::getLabel
LogTypeBase::getWorkflowId public function Gets the log workflow ID. Overrides LogTypeInterface::getWorkflowId
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
Test::buildFieldDefinitions public function Overrides LogTypeBase::buildFieldDefinitions 1