- Issue created by @flocondetoile
- 🇮🇳India abhishek@kumar
Here's how this might be implemented:
// In your button build/render method: $build['start_button'] = [ '#type' => 'link', '#title' => $this->getUserSpecificLabel(), '#url' => $this->getUserSpecificUrl(), '#cache' => [ 'contexts' => ['user'], // This makes the button vary by user ], ]; // Or if this is a render array for the whole page: $build['#cache']['contexts'][] = 'user';
- 055284b1 committed on 2.0.x
Issue #3516366 by flocondetoile: start button wrong label
- 055284b1 committed on 2.0.x