This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| overflow-wrap: break-word; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rename 's/cleanplus/corporateplus/g' *.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36", | |
| "environment": { | |
| "networkUserAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3963.0 Mobile Safari/537.36 Chrome-Lighthouse", | |
| "hostUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36", | |
| "benchmarkIndex": 1214 | |
| }, | |
| "lighthouseVersion": "6.0.0", | |
| "fetchTime": "2020-07-27T16:14:55.670Z", | |
| "requestedUrl": "http://localhost/mtt-tourismplus/site/d8/", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| git log --oneline --graph --color --all --decorate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function HOOK_preprocess_block__page_title_block(&$variables) { | |
| $request = \Drupal::request(); | |
| $route_match = \Drupal::routeMatch(); | |
| $page_title = \Drupal::service('title_resolver')->getTitle($request, $route_match->getRouteObject()); | |
| if (!empty($page_title) && empty($variables['content']['#title'])) { | |
| $variables['content']['#title'] = $page_title; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| parameters: | |
| customRulesetUsed: true | |
| reportUnmatchedIgnoredErrors: false | |
| # Exclude directories that you may need to | |
| excludes_analyse: | |
| - themes/custom/scholarly/js/revolution | |
| # Ignore phpstan-drupal extension's rules. | |
| ignoreErrors: | |
| - '#\Drupal calls should be avoided in classes, use dependency injection instead#' | |
| - '#Plugin definitions cannot be altered.#' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| composer require mglaman/phpstan-drupal phpstan/phpstan-deprecation-rules --dev | |
| cp phpstan.neon # place in drupal root / as in https://gist.github.com/vkechagias/05e8388734c78503cff9d5ea4e1acc19 | |
| ./vendor/bin/phpstan analyse themes/custom/THEMENAME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function minimalplus_preprocess_node(&$variables) { | |
| $field_image = $variables['elements']['field_image']; | |
| if (!empty($field_image) && !empty($field_image['#items']->first()) && !empty($field_image['#items']->first()->target_id)) { | |
| $image_tid = $field_image['#items']->first()->target_id; | |
| $image = File::load($image_tid); | |
| $moduleHandler = \Drupal::service('module_handler'); | |
| if (!empty($image) && !empty($image->getFileUri()) && $moduleHandler->moduleExists('crop')) { | |
| $crops = \Drupal::entityTypeManager()->getStorage('crop')->loadByProperties(['uri' => $image->getFileUri()]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function THEME_preprocess_page__node(&$variables) { | |
| $translated_node = \Drupal::service('entity.repository')->getTranslationFromContext($variables['node']); | |
| if (!empty($translated_node)) { | |
| $field_data = $translated_node->get('FIELD_MACHINE_NAME')->getValue(); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function THEME_preprocess_page(&$variables) { | |
| $variables['route_name'] = \Drupal::routeMatch()->getRouteName(); | |
| } |
NewerOlder