popsu.theme 8.6 KB

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