Disable Advagg.
@command advagg-disable @usage Standard example drush advagg-disable @aliases advagg-da
Fichier
-
src/
Commands/ AdvaggCommands.php, line 84
Classe
- AdvaggCommands
- Advagg commands for Drush 9+.
Namespace
Drupal\advagg\CommandsCode
public function disable() {
$this->advaggConfig
->set('enabled', 0)
->save();
$this->logger()
->notice(dt('All Advagg functionality is disabled.'));
}