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;
use Drupal\Core\StringTranslation\StringTranslationTrait;

/**
 * Hook implementations for link_generation_test.
 */
class LinkGenerationTestHooks {
  use StringTranslationTrait;
  
  /**
   * Implements hook_link_alter().
   */
  public function linkAlter(&$variables) : void {
    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'] = $this->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.