popsu.theme 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <?php
  2. /*
  3. * @files
  4. * Theme Template Funtions
  5. */
  6. use Drupal\Core\Template\Attribute;
  7. use Drupal\Core\Link;
  8. use Drupal\Core\Url;
  9. // function popsu_preprocess_views_view_list(&$variables){
  10. // kint($variables);die();
  11. // }
  12. function popsu_preprocess_html(&$variables) {
  13. $node = \Drupal::routeMatch()->getParameter('node');
  14. if ($node){
  15. if($node->hasField('field_programme') && $node->get('field_programme')->getString() != ""){
  16. $variables['attributes']['class'][] = 'programme-' . $node->get('field_programme')->getString();
  17. }else{
  18. if ($node->id()){
  19. $variables['attributes']['class'][] = 'programme-' . $node->id();
  20. }
  21. }
  22. }
  23. }
  24. function popsu_preprocess_node(&$variables){
  25. $node = &$variables['node'];
  26. if($node->hasField('field_programme') && $node->get('field_programme')->getString() != ""){
  27. $variables['attributes']['class'][] = 'programme-' . $node->get('field_programme')->getString();
  28. }
  29. }
  30. function popsu_preprocess_field(&$variables){
  31. $element = &$variables['element'];
  32. if (isset($element['#field_name'])) {
  33. $variables['attributes']['class'][] = $element['#field_name'];
  34. if ($element['#field_name'] == 'field_texte') {
  35. $variables['attributes']['class'][] = 'crop';
  36. }
  37. }
  38. }
  39. function popsu_preprocess_views_view_unformatted(&$variables) {
  40. $view = &$variables['view'];
  41. $rows = &$variables['rows'];
  42. if($view->id() == "programmes"){
  43. foreach ($rows as $id => $row) {
  44. $variables['rows'][$id]['attributes'] = new Attribute();
  45. $c = $variables['rows'][$id]['content']["#row"]->nid;
  46. $variables['rows'][$id]['attributes']->addClass("programme-".$c);
  47. }
  48. }else{
  49. foreach ($rows as $id => $row) {
  50. if(isset($row['content']['#row'])){
  51. $r = $row['content']['#row'];
  52. $entity = $r->_entity;
  53. if ($entity->hasField('field_programme') && $entity->get('field_programme')->getString() != "" ) {
  54. $c = $entity->get('field_programme')->getString();
  55. $variables['rows'][$id]['attributes'] = new Attribute();
  56. $variables['rows'][$id]['attributes']->addClass("programme-".$c);
  57. if ($entity->hasField('field_type_de_ressource') && $entity->get('field_type_de_ressource')->getString() == "74" ) {
  58. $type = $entity->get('field_type_de_ressource')->getString();
  59. $variables['rows'][$id]['attributes']['class'][] = "type-".$type;
  60. }
  61. }
  62. }else if(isset($row['content']['#node'])){
  63. $r = $row['content']['#node'];
  64. if ($r->hasField('field_programme') && $r->get('field_programme')->getString() != "" ) {
  65. $c = $r->get('field_programme')->getString();
  66. $variables['rows'][$id]['attributes'] = new Attribute();
  67. $variables['rows'][$id]['attributes']->addClass("programme-".$c);
  68. }
  69. }
  70. }
  71. }
  72. };
  73. /* implements template_preprocess_region() */
  74. function popsu_preprocess_region(&$variables) {
  75. if (isset($variables['region'])) {
  76. $variables['attributes']['class'][] = $variables['region'].'_container';
  77. }
  78. }
  79. /**
  80. * Implements hook_preprocess_views_view_unformatted().
  81. */
  82. function popsu_preprocess_views_view_grid(&$variables){
  83. // we pass all variables by reference
  84. // https://www.php.net/manual/en/language.references.php
  85. $items =& $variables['items'];
  86. // loop through grid items (row and cols) not through views\rows
  87. foreach ($items as $r => &$row) {
  88. foreach ($row['content'] as $c => &$col) {
  89. // get the entity
  90. $entity = $col['content']["#row"]->_entity;
  91. // build generique classe
  92. $classes = array(
  93. $entity->getEntityTypeId(),
  94. $entity->getEntityTypeId().'-'.$entity->bundle(),
  95. $entity->getEntityTypeId().'-'.$entity->bundle().'-'.$entity->id(),
  96. );
  97. // kint($entity);die();
  98. // if field_programme exists, add a class
  99. if ($entity->hasField('field_programme')) {
  100. $prog_id = $entity->get('field_programme')->getString();
  101. $classes[] = "programme-".$prog_id;
  102. }
  103. if ($entity->hasField('field_type_de_ressource')) {
  104. $type = $entity->get('field_type_de_ressource')->getString();
  105. $classes[] = "type-".$type;
  106. }
  107. // add the classes to the column
  108. // Drupal\Core\Template\Attribute
  109. // https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Template%21Attribute.php/class/Attribute/8.2.x
  110. $col['attributes']->addClass($classes);
  111. }
  112. }
  113. }
  114. function popsu_preprocess_views_view_field(&$variables){
  115. // check if link to entity option is true
  116. $settings = isset($variables['field']->options['settings']) ? $variables['field']->options['settings'] : false;
  117. if ($settings && isset($settings['link_to_entity']) && $settings['link_to_entity']) {
  118. // get the entity and build the classes
  119. $entity = $variables['row']->_entity;
  120. // $entity_type = $entity->getEntityType();
  121. if ($entity->getEntityType()->id() == "node" && $entity->id() == 5) {
  122. // temporarely desactivate popsumonde link
  123. // get the entity link and url
  124. $link = $entity->toLink();
  125. // // $url = $entity->toLink()->getUrl();
  126. // $url = URL::fromUserInput('#');
  127. // // update the url of the link
  128. // $link->setUrl($url);
  129. // overwrite the output
  130. $variables['output'] = [
  131. '#type' => 'html_tag',
  132. '#tag' => 'span',
  133. '#value' => $link->getText(),
  134. '#attributes' => [
  135. "class" => array(
  136. $entity->getEntityTypeId(),
  137. $entity->getEntityTypeId().'-'.$entity->bundle(),
  138. $entity->getEntityTypeId().'-'.$entity->bundle().'-'.$entity->id(),
  139. )
  140. ]
  141. ];
  142. }else{
  143. // build new classes
  144. $new_classes = array(
  145. $entity->getEntityTypeId(),
  146. $entity->getEntityTypeId().'-'.$entity->bundle(),
  147. $entity->getEntityTypeId().'-'.$entity->bundle().'-'.$entity->id(),
  148. );
  149. // get the entity link and url
  150. $link = $entity->toLink();
  151. $url = $entity->toLink()->getUrl();
  152. // set the active_class option to the url
  153. $url->setOption('set_active_class', true);
  154. // add new classes to the url (without overwriting existing once)
  155. $options = $url->getOptions();
  156. if(isset($options['attributes']) && $attributes = $options['attributes']){
  157. if(isset($attributes['class']) && $classes = $attributes['class']){
  158. $attributes['class'] += $new_classes;
  159. }else{
  160. $attributes['class'] = $new_classes;
  161. }
  162. }else{
  163. $attributes = array(
  164. "class" => $new_classes
  165. );
  166. }
  167. $url->setOption('attributes', $attributes);
  168. // update the url of the link
  169. $link->setUrl($url);
  170. // overwrite the output
  171. $variables['output'] = $link->toRenderable();
  172. }
  173. }
  174. }
  175. function popsu_preprocess_block__entity_field(&$variables){
  176. $field = &$variables['content']['field'];
  177. $items = &$field['#items'];
  178. if ($field['#field_type'] === "entity_reference_revisions") {
  179. $entity = $items->first()->get('entity');
  180. $entityAdapter = $entity->getTarget();
  181. $referencedEntity = $entityAdapter->getValue();
  182. $field_definitions = $referencedEntity->getFieldDefinitions();
  183. $all_empty = TRUE;
  184. foreach ($field_definitions as $field_name => $definition) {
  185. if (!method_exists($definition, 'isBaseField')) {
  186. $field_instance = $referencedEntity->get($field_name);
  187. if (!$field_instance->isEmpty()) {
  188. $all_empty = FALSE;
  189. }
  190. }
  191. }
  192. if ($all_empty) {
  193. $variables['isEmpty'] = true;
  194. }
  195. }
  196. }