Hook preproccess drupal

PHOTO EMBED

Fri Dec 03 2021 12:23:07 GMT+0000 (Coordinated Universal Time)

Saved by @igor #php #drupal

function mytheme_preprocess_node(&$variables) {
  switch ($variables['node']->getType()) {
    case "video":
      // ...
    break;
    case "something_else":
      // ...
    break;
  }
}			
content_copyCOPY

Use condition within the preprocessor to get the node type and then either do your logic within, or invoke another function.