Guest User

Untitled

a guest
Jul 17th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /**
  2. * Implements hook_preprocess_HOOK().
  3. */
  4. function MY_MODULE_preprocess_html(&$variables) {
  5. if (Drupal::routeMatch()->getRouteName() == 'my.route') {
  6. $variables['attributes']['class'][] = 'my-class';
  7. }
  8. }
  9.  
  10. if ((Drupal::routeMatch()->getRouteName() == 'my.route') && ($this->moderationInformation->hasPendingRevision($node))) {}
Add Comment
Please, Sign In to add comment