This file contains 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
export PATH="$HOME/bin:$PATH" | |
alias composer="php -d suhosin.executor.include.whitelist=phar ~/composer.phar" |
This file contains 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
# Change working directory to a temporary location | |
cd ~/temp | |
# Export config to "config" directory | |
# Change `@mysite.local` to your local drush alias | |
drush @mysite.local config-export --destination=~/temp/config | |
# Tar all files in "config" directory to `config.tar.gz` | |
tar -czf config.tar.gz -C config . |
This file contains 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
{# html_date is the machine name of an existing date format #} | |
{% set createdDate = node.getCreatedTime|format_date('html_date') %} | |
<div class="date">{{ createdDate }}</div> |
This file contains 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
$ sudo killall VDCAssistant |
This file contains 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
# Used when only changing the case of a file name. | |
# `oldfilename` is the new file name! | |
git mv -f OldFileName oldfilename |
This file contains 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 | |
/** | |
* Implements theme_suggestions_HOOK_alter(). | |
*/ | |
function mytheme_theme_suggestions_paragraph_alter(array &$suggestions, array $variables) { | |
/** @var \Drupal\paragraphs\ParagraphInterface $paragraph */ | |
$paragraph = $variables['elements']['#paragraph']; | |
/** @var \Drupal\Core\Entity\ContentEntityInterface $parent */ | |
$parent = $paragraph->getParentEntity(); |
This file contains 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
SELECT table_name, round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` FROM information_schema.TABLES; |
This file contains 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 | |
use Drupal\views\Views; | |
// Get the View title and URL from a path. | |
$path = '/my-path'; | |
$url = \Drupal::service('path.validator')->getUrlIfValid($path); |
This file contains 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 | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | |
/** | |
* Implements hook_preprocess_HOOK(). | |
*/ | |
function my_module_preprocess_node(&$variables) { | |
$node = $variables['node']; | |
$nodetype = $node->getType(); |
This file contains 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 | |
/** | |
* Format a date to be saved in Drupal. | |
* | |
* @param string $date | |
* | |
* @return string | |
*/ | |
private function formatDate($date) { |