class DynamicPageCacheHooks

Hook implementations for dynamic_page_cache.

Hierarchy

Expanded class hierarchy of DynamicPageCacheHooks

File

core/modules/dynamic_page_cache/src/Hook/DynamicPageCacheHooks.php, line 11

Namespace

Drupal\dynamic_page_cache\Hook
View source
class DynamicPageCacheHooks {
    
    /**
     * Implements hook_help().
     */
    public function help($route_name, RouteMatchInterface $route_match) {
        switch ($route_name) {
            case 'help.page.dynamic_page_cache':
                $output = '<h2>' . t('About') . '</h2>';
                $output .= '<p>' . t('The Internal Dynamic Page Cache module caches pages for all users in the database, handling dynamic content correctly. For more information, see the <a href=":dynamic_page_cache-documentation">online documentation for the Internal Dynamic Page Cache module</a>.', [
                    ':dynamic_page_cache-documentation' => 'https://www.drupal.org/documentation/modules/dynamic_page_cache',
                ]) . '</p>';
                $output .= '<h2>' . t('Uses') . '</h2>';
                $output .= '<dl>';
                $output .= '<dt>' . t('Speeding up your site') . '</dt>';
                $output .= '<dd>' . t('Pages which are suitable for caching are cached the first time they are requested, then the cached version is served for all later requests. Dynamic content is handled automatically so that both cache correctness and hit ratio is maintained.') . '</dd>';
                $output .= '<dd>' . t('The module requires no configuration. Every part of the page contains metadata that allows Internal Dynamic Page Cache to figure this out on its own.') . '</dd>';
                $output .= '</dl>';
                return $output;
        }
    }

}

Members

Title Sort descending Modifiers Object type Summary
DynamicPageCacheHooks::help public function Implements hook_help().

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