You are here

class SystemData in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin\SystemData
  2. 8.5 modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin\SystemData
  3. 8.6 modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin\SystemData
  4. 8.7 modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin\SystemData
  5. 8.8 modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin\SystemData
  6. 10.3.x modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin\SystemData
  7. 10.1.x modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin\SystemData
  8. 10.2.x modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin\SystemData

Provides a 'SystemData' share usage data plugin.

Plugin annotation


@ShareUsageDataPlugin(
 id = "system_data",
 label = @Translation("System data"),
 setting = "system_data",
 weight = -430,
)

Hierarchy

Expanded class hierarchy of SystemData

File

modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Plugin/ShareUsageDataPlugin/SystemData.php, line 17

Namespace

Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPlugin
View source
class SystemData extends ShareUsageDataPluginBase {

  /**
   * Get the value.
   *
   * @return array
   *   $json array.
   */
  public function getValue() {
    $info = [
      'php' => [
        'version' => [
          'version' => PHP_VERSION,
          'major_minor' => PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION,
        ],
        'info' => [
          'extensions' => get_loaded_extensions(),
        ],
      ],
      'os' => [
        php_uname(),
      ],
    ];
    return $info;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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.
ShareUsageDataPluginBase::$config public property The config.
ShareUsageDataPluginBase::$entityTypeManager public property The entity type manager.
ShareUsageDataPluginBase::create public static function The create method. Overrides ContainerFactoryPluginInterface::create
ShareUsageDataPluginBase::enabled public function Check if this plugin should be enabled. Overrides ShareUsageDataPluginInterface::enabled
ShareUsageDataPluginBase::__construct public function UserExportPluginBase constructor. Overrides PluginBase::__construct
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.
SystemData::getValue public function Get the value. Overrides ShareUsageDataPluginBase::getValue