class ExecuteUpdates in Automatic Updates 8
Execute database updates.
Plugin annotation
@DatabaseUpdateHandler(
id = "execute_updates",
label = "Execute database updates",
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\automatic_updates\DatabaseUpdateHandlerPluginBase implements DatabaseUpdateHandlerInterface
- class \Drupal\automatic_updates\Plugin\DatabaseUpdateHandler\ExecuteUpdates implements ContainerFactoryPluginInterface
- class \Drupal\automatic_updates\DatabaseUpdateHandlerPluginBase implements DatabaseUpdateHandlerInterface
Expanded class hierarchy of ExecuteUpdates
File
- src/
Plugin/ DatabaseUpdateHandler/ ExecuteUpdates.php, line 18
Namespace
Drupal\automatic_updates\Plugin\DatabaseUpdateHandlerView source
class ExecuteUpdates extends DatabaseUpdateHandlerPluginBase implements ContainerFactoryPluginInterface {
/**
* The logger.
*
* @var \Psr\Log\LoggerInterface
*/
protected $logger;
/**
* Constructs a new maintenance mode service.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Psr\Log\LoggerInterface $logger
* The logger.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, LoggerInterface $logger) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->logger = $logger;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('logger.channel.automatic_updates'));
}
/**
* {@inheritdoc}
*/
public function execute() {
$process = automatic_updates_console_command('updatedb');
if ($errors = $process
->getErrorOutput()) {
$this->logger
->error($errors);
return FALSE;
}
return TRUE;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DatabaseUpdateHandlerPluginBase:: |
public | function |
Returns the translated plugin label. Overrides DatabaseUpdateHandlerInterface:: |
|
ExecuteUpdates:: |
protected | property | The logger. | |
ExecuteUpdates:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
ExecuteUpdates:: |
public | function |
Handle database updates. Overrides DatabaseUpdateHandlerInterface:: |
|
ExecuteUpdates:: |
public | function |
Constructs a new maintenance mode service. Overrides PluginBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. |