theming: added classes to node
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/*
|
||||
* @files
|
||||
* Theme Template Funtions
|
||||
*/
|
||||
|
||||
// use Drupal\Core\Template\Attribute;
|
||||
// use Drupal\Core\Link;
|
||||
// use Drupal\Core\Url;
|
||||
|
||||
|
||||
function eql_preprocess_node(&$variables){
|
||||
$node = &$variables['node'];
|
||||
$variables['attributes']['class'][] = 'node-type-' . $node->gettype();
|
||||
if($node->gettype() == "actualite") {
|
||||
$actu_type = $node->get('field_actu_type')->getString();
|
||||
$variables['attributes']['class'][] = 'actu-type-' . $actu_type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user