OtherModuleInstalledHooks.php

Namespace

Drupal\respond_install_uninstall_hook_test\Hook

File

core/modules/system/tests/modules/respond_install_uninstall_hook_test/src/Hook/OtherModuleInstalledHooks.php

View source
<?php

declare (strict_types=1);
namespace Drupal\respond_install_uninstall_hook_test\Hook;

use Drupal\Core\Hook\Attribute\Hook;

/**
 * Hook implementations for respond_install_uninstall_hook_test.
 */
class OtherModuleInstalledHooks {
    
    /**
     * Implements hook_module_preinstall().
     */
    public function modulePreinstall() : void {
        // Set a global value we can check in test code.
        $GLOBALS['hook_module_preinstall'] = 'hook_module_preinstall';
    }
    
    /**
     * Implements hook_modules_installed().
     */
    public function modulesInstalled() : void {
        // Set a global value we can check in test code.
        $GLOBALS['hook_modules_installed'] = 'hook_modules_installed';
    }

}

Classes

Title Deprecated Summary
OtherModuleInstalledHooks Hook implementations for respond_install_uninstall_hook_test.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.