class WebformDevelCommands in Webform 6.x
Same name and namespace in other branches
- 8.5 modules/webform_devel/src/Commands/WebformDevelCommands.php \Drupal\webform_devel\Commands\WebformDevelCommands
Webform devel commandfile.
Hierarchy
- class \Drupal\webform_devel\Commands\WebformDevelCommands extends \Drush\Commands\DrushCommands
Expanded class hierarchy of WebformDevelCommands
1 string reference to 'WebformDevelCommands'
- drush.services.yml in modules/
webform_devel/ drush.services.yml - modules/webform_devel/drush.services.yml
1 service uses WebformDevelCommands
- webform_devel.commands in modules/
webform_devel/ drush.services.yml - \Drupal\webform_devel\Commands\WebformDevelCommands
File
- modules/
webform_devel/ src/ Commands/ WebformDevelCommands.php, line 16
Namespace
Drupal\webform_devel\CommandsView source
class WebformDevelCommands extends DrushCommands {
/**
* Provides the state system.
*
* @var \Drupal\Core\State\State
*/
protected $state;
/**
* The user data service.
*
* @var \Drupal\user\UserDataInterface
*/
protected $userData;
/**
* The construct method.
*
* @param \Drupal\Core\State\StateInterface $state
* Provides the state system.
* @param \Drupal\user\UserDataInterface $user_data
* The user data service.
*/
public function __construct(StateInterface $state, UserDataInterface $user_data) {
parent::__construct();
$this->state = $state;
$this->userData = $user_data;
}
/**
* Executes devel export config.
*
* @command webform:devel:config:update
* @aliases wfdcu,webform-devel-reset
*/
public function drush_webform_devel_config_update() {
module_load_include('inc', 'webform', 'includes/webform.install');
$files = $files = \Drupal::service('file_system')
->scanDirectory(drupal_get_path('module', 'webform'), '/^webform\\.webform\\..*\\.yml$/');
$total = 0;
foreach ($files as $filename => $file) {
try {
$original_yaml = file_get_contents($filename);
$tidied_yaml = $original_yaml;
$data = Yaml::decode($tidied_yaml);
// Skip translated configu files which don't include a langcode.
// @see tests/modules/webform_test_translation/config/install/language
if (empty($data['langcode'])) {
continue;
}
$data = _webform_update_webform_setting($data);
$tidied_yaml = WebformYaml::encode($data) . PHP_EOL;
if ($tidied_yaml !== $original_yaml) {
$this
->output()
->writeln(dt('Updating @file…', [
'@file' => $file->filename,
]));
file_put_contents($file->uri, $tidied_yaml);
$total++;
}
} catch (\Exception $exception) {
$message = 'Error parsing: ' . $file->filename . PHP_EOL . $exception
->getMessage();
if (strlen($message) > 255) {
$message = substr($message, 0, 255) . '…';
}
$this
->logger()
->log($message, LogLevel::ERROR);
$this
->output()
->writeln($message);
}
}
if ($total) {
$this
->output()
->writeln(dt('@total webform.webform.* configuration file(s) updated.', [
'@total' => $total,
]));
}
else {
$this
->output()
->writeln(dt('No webform.webform.* configuration files updated.'));
}
}
/**
* Executes webform devel reset.
*
* @command webform:devel:reset
* @aliases wfdr
*
* @see drush_webform_devel_reset()
*/
public function drush_webform_devel_reset() {
if (!$this
->io()
->confirm(dt("Are you sure you want repair the Webform module's admin settings and webforms?"))) {
throw new UserAbortException();
}
$this
->output()
->writeln(dt('Resetting message closed via State API…'));
$this->state
->delete('webform.element.message');
$this
->output()
->writeln(dt('Resetting message closed via User Data…'));
$this->userData
->delete('webform', NULL, 'webform.element.message');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
WebformDevelCommands:: |
protected | property | Provides the state system. | |
WebformDevelCommands:: |
protected | property | The user data service. | |
WebformDevelCommands:: |
public | function | Executes devel export config. | |
WebformDevelCommands:: |
public | function | Executes webform devel reset. | |
WebformDevelCommands:: |
public | function | The construct method. |