public function ConfigUpdateUiCommands::inactiveReport in Configuration Update Manager 8
Displays optional config items.
Displays a list of optional config items from your installed modules, themes, or install profile that are not currently in your active config.
@usage drush config-inactive-report type action Displays the inactive config report for action config.
@command config:inactive-report @aliases cri,config-inactive-report
Parameters
string $type: Run the report for: module, theme, profile, or "type" for config entity type.
string $name: The machine name of the module, theme, etc. to report on. See config-list-types to list types for config entities; you can also use system.all for all types, or system.simple for simple config.
Return value
\Consolidation\OutputFormatters\StructuredData\RowsOfFields A structured data object of rows of inactive configuration items.
File
- config_update_ui/
src/ Commands/ ConfigUpdateUiCommands.php, line 121
Class
- ConfigUpdateUiCommands
- A set of Drush commands for Config Update Manager.
Namespace
Drupal\config_update_ui\CommandsCode
public function inactiveReport($type, $name) {
return $this->cliService
->inactiveReport($type, $name);
}