You are here

class ActivityTypeWithConfig in CRM Core 8.2

Same name and namespace in other branches
  1. 8.3 modules/crm_core_activity/tests/modules/crm_core_activity_plugin_test/src/Plugin/crm_core_activity/ActivityType/ActivityTypeWithConfig.php \Drupal\crm_core_activity_plugin_test\Plugin\crm_core_activity\ActivityType\ActivityTypeWithConfig
  2. 8 modules/crm_core_activity/tests/modules/crm_core_activity_plugin_test/src/Plugin/crm_core_activity/ActivityType/ActivityTypeWithConfig.php \Drupal\crm_core_activity_plugin_test\Plugin\crm_core_activity\ActivityType\ActivityTypeWithConfig

Provides generic plugin for activity type.

Plugin annotation


@ActivityTypePlugin(
  id = "with_config",
  label = @Translation("Activity type with config"),
  description = @Translation("Activity type with config plugin.")
)

Hierarchy

Expanded class hierarchy of ActivityTypeWithConfig

2 files declare their use of ActivityTypeWithConfig
ActivityEntityPreDeleteTest.php in modules/crm_core_activity/tests/src/Kernel/ActivityEntityPreDeleteTest.php
ActivityTypePluginTest.php in modules/crm_core_activity/tests/src/Kernel/ActivityTypePluginTest.php

File

modules/crm_core_activity/tests/modules/crm_core_activity_plugin_test/src/Plugin/crm_core_activity/ActivityType/ActivityTypeWithConfig.php, line 16

Namespace

Drupal\crm_core_activity_plugin_test\Plugin\crm_core_activity\ActivityType
View source
class ActivityTypeWithConfig extends ActivityTypePluginBase {

  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() {
    return [
      'configuration_variable' => 'foo',
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ActivityTypePluginBase::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies
ActivityTypePluginBase::display public function Returns visual representation of the activity in form of a render array. Overrides ActivityTypePluginInterface::display
ActivityTypePluginBase::getConfiguration public function Gets this plugin's configuration. Overrides ConfigurablePluginInterface::getConfiguration
ActivityTypePluginBase::label public function Displays the contents of the label field on the activity entity. Overrides ActivityTypePluginInterface::label
ActivityTypePluginBase::setConfiguration public function Sets the configuration for this plugin instance. Overrides ConfigurablePluginInterface::setConfiguration
ActivityTypePluginBase::__construct public function Constructs a new class instance. Overrides PluginBase::__construct
ActivityTypeWithConfig::defaultConfiguration public function Gets default configuration for this plugin. Overrides ActivityTypePluginBase::defaultConfiguration
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
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 3
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. 1
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.