public function SecurityReview::setConfigured in Security Review 8
Sets the 'configured' flag.
Parameters
bool $configured: The new value of the 'configured' setting.
File
- src/
SecurityReview.php, line 136
Class
- SecurityReview
- A class containing static methods regarding the module's configuration.
Namespace
Drupal\security_reviewCode
public function setConfigured($configured) {
$this->config
->set('configured', $configured);
$this->config
->save();
}