Skip to content

Instantly share code, notes, and snippets.

Avatar

Juampy NR juampynr

View GitHub Profile
@juampynr
juampynr / config.yml
Last active February 26, 2021 01:10
Sample .tugboat/config.yml for a Drupal 8 contrib project (webform). Inspired by https://github.com/q0rban/tugboat-drupal
View config.yml
services:
php:
image: q0rban/tugboat-drupal:8.8
default: true
http: false
depends: mysql
commands:
update: |
set -eux
# Check out a branch using the unique Tugboat ID for this repository, to
@juampynr
juampynr / extract_fields.php
Created July 17, 2020 16:43
Drupal 7: script to extract all fields
View extract_fields.php
<?php
/**
* Drupal 7 field extract script.
*
* Extracts all fields into a csv file so it can be open with Google Spreadsheet, LibreOffice, or Excel.
*
* Usage:
* 1. Save this file to the docroot.
* 2. run drush php-script exctract_fields.php
@juampynr
juampynr / query.sql
Created July 14, 2020 13:44
Drupal 7: Extract all fields per content type
View query.sql
select fci.entity_type, fci.bundle, fci.field_name, fc.type, fc.module
from field_config_instance fci
inner join field_config fc on fc.id = fci.field_id
order by fci.entity_type ASC, fci.bundle ASC, fci.field_name ASC;
@juampynr
juampynr / RoboFile.php
Last active October 9, 2021 10:07
Drupal 8 common migration tasks
View RoboFile.php
<?php
/**
* Command line tasks.
*
* @codingStandardsIgnoreStart
* @codeCoverageIgnore
* @SuppressWarnings(PHPMD)
*/
class RoboFile extends \Robo\Tasks {
@juampynr
juampynr / commands.sh
Created October 30, 2018 23:26
Tweak a migration group and commit the changes
View commands.sh
# 1. Delete the migration group.
# This command needs the patch at https://www.drupal.org/project/migrate_tools/issues/2977501#comment-12640911
drush migrate:delete-group migrate_drupal_7
# 2. Recreate the migration group.
drush migrate:upgrade --legacy-db-key=drupal7 --legacy-root=sites/default/files --configure-only
# 3. Export the configuration, then review and commit the changes.
drush config:export -y
@juampynr
juampynr / bash.sh
Last active October 30, 2018 23:16
Set up Drupal 8 and run the first migration
View bash.sh
# 1. Download dependencies.
composer require drupal/migrate_tools:4.x-dev drupal/migrate_upgrade:3.x-dev drupal/migrate_plus:4.x-dev
# 2. Enable modules.
drush en -y migrate_tools,migrate_upgrade,migrate_plus
# 3. Generate a migration group.
drush migrate:upgrade --legacy-db-key=drupal7 --legacy-root=/var/www/drupal/drupal7 --configure-only
# 4. Export group into configuration and commit the files. Then review and commit the files.
@juampynr
juampynr / mymodule.info
Last active August 10, 2021 16:56
Drupal 7 Views 3 custom filter handler
View mymodule.info
dependencies[] = ctools
; Views Handlers
files[] = views/mymodule_handler_filter_myfiltername.inc
@juampynr
juampynr / CHANGELOG.md
Created March 27, 2018 09:35
Sample CHANGELOG
View CHANGELOG.md

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased] - yyyy-mm-dd

Here we write upgrading notes for brands. It's a team effort to make them as

@juampynr
juampynr / update-path.sh
Last active December 16, 2017 11:13
Drupal 8: Common steps to run after deploying code. See https://www.lullabot.com/articles/a-successful-drupal-8-deployment for further details.
View update-path.sh
#!/usr/bin/env bash
# If this is a production deployment script, append: --no-dev --optimize-autoloader --prefer-dist
composer install -vvv
drush updatedb -y -v
drush config-import -y -v
@juampynr
juampynr / script.pipeline
Created July 7, 2017 10:01
Jenkins job to sync Production into Develoment
View script.pipeline
String pro_domain = '2017.drupalcamp.es'
String dev_domain = 'dev.drupalcamp.es'
String drush_pro = "drush -l ${pro_domain} -r /var/www/${pro_domain}/current/web"
String drush_dev = "drush -l ${dev_domain} -r /var/www/${dev_domain}/current/web"
String files_pro = "/var/www/${pro_domain}/shared/web/sites/default/files/"
String files_dev = "/var/www/${dev_domain}/shared/web/sites/default/files/"
String rsyncOpts = '-azv --delete --exclude .php --exclude php --exclude styles'
String deploySshKeyId = 'some-key-id'
lock(resource: "dev.drupalcamp.es") {