LinkGenerationTestHooks.php

Namespace

Drupal\link_generation_test\Hook

File

core/modules/system/tests/modules/link_generation_test/src/Hook/LinkGenerationTestHooks.php

View source
<?php

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

use Drupal\Core\Hook\Attribute\Hook;

/**
 * Hook implementations for link_generation_test.
 */
class LinkGenerationTestHooks {
    
    /**
     * Implements hook_link_alter().
     */
    public function linkAlter(&$variables) {
        if (\Drupal::state()->get('link_generation_test_link_alter', FALSE)) {
            // Add a text to the end of links.
            if (\Drupal::state()->get('link_generation_test_link_alter_safe', FALSE)) {
                $variables['text'] = t('@text <strong>Test!</strong>', [
                    '@text' => $variables['text'],
                ]);
            }
            else {
                $variables['text'] .= ' <strong>Test!</strong>';
            }
        }
    }

}

Classes

Title Deprecated Summary
LinkGenerationTestHooks Hook implementations for link_generation_test.

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