public Theme::postInstall()
Performs actions after installation.
Overrides Updater::postInstall
File
- core/lib/Drupal/Core/Updater/Theme.php, line 80
Class
- Theme
- Defines a class for updating themes using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
Namespace
Drupal\Core\Updater
Code
1 2 3 4 5 | public function postInstall() { // Update the theme info. clearstatcache(); \Drupal::service( 'theme_handler' )->rebuildThemeData(); } |
Please login to continue.