popsu.theme 8.3 KB

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