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
diff --git a/src/WebformQuery.php b/src/WebformQuery.php | |
index 8df00f7..5116d59 100644 | |
--- a/src/WebformQuery.php | |
+++ b/src/WebformQuery.php | |
@@ -4,6 +4,11 @@ namespace Drupal\webform_query; | |
use Drupal\Core\Database\Connection; | |
+/** | |
+ * Class WebformQuery |
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 | |
NAME=$1 | |
VERSION=${2:-8.8.x} | |
if [[ -z "${NAME}" ]]; then | |
NAME=$(uuidgen) | |
fi | |
if [[ -d $NAME ]]; then |
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
# Should be placed in .docksal/docksal-local.env | |
# Change URL to location of files | |
APACHE_FILE_PROXY="http://www.example.com" |
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
git log -- modules/book | |
commit 18a8dc497416a10d0e45efc0a41f199b8ef5fd0a (tag: pantheon_test_190) | |
Author: Virginia Franklyn <[email protected]> | |
Date: Thu Jul 21 14:48:00 2016 +0000 | |
removed a ton of modules to bring up to test and content down from live to see if the modules uninstalled properly - vf | |
commit ab1797f30525c4ac585fbb243b75c8d4079ff224 | |
Author: Jennifer Hodgdon <[email protected]> |
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 | |
whoami |
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
# | |
# Apache/PHP/Drupal settings: | |
# | |
# Protect files and directories from prying eyes. | |
<FilesMatch "\.(engine|inc|install|make|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\.(?!well-known).*|Entries.*|Repository|Root|Tag|Template|composer\.(json|lock))$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig|\.save)$"> | |
<IfModule mod_authz_core.c> | |
Require all denied | |
</IfModule> | |
<IfModule !mod_authz_core.c> |
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
cd /var/www/html | |
rm -Rf * | |
composer require typo3/cms:"^7.6" helhum/typo3-console:"^4.5" gridelementsteam/gridelements:"^7.1" | |
vendor/bin/typo3cms install:setup --force --database-user-name "root" --database-user-password "" --database-host-name "localhost" --database-name "typo3_76" --database-port "3306" --database-socket "" --admin-user-name "admin" --admin-password "password" --site-name "TYPO3 Project" --site-setup-type "site" --use-existing-database 0 | |
vendor/bin/typo3cms cache:flush | |
php typo3/cli_dispatch.phpsh extbase extension:install gridelements |
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
version: '3' | |
services: | |
trigger: | |
image: franela/dind | |
command: sh -c "curl -fsSL https://get.docksal.io | sh" |
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
#!/usr/bin/env bash | |
#: exec_target = cli | |
## Initialize stack and site (full reset) | |
## | |
## Usage: fin refresh [environment id] | |
ENVIRONMENT=${1:-prod} | |
cd /var/www/${DOCROOT} | |
DBFILE="/tmp/site.${ENVIRONMENT}.sql" | |
if [ ! -f $DBFILE ] || [ ! -z $(find $DBFILE -mmin +60) ] ; then | |
if [ ! -f $DBFILE ]; then |
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
#!/usr/bin/env bash | |
#: exec_target = cli | |
## Run Gulp Commands on the theme | |
## | |
## Usage: fin gulp [arguments] | |
## | |
# Abort if anything fails | |
set -e | |
cd ${PROJECT_ROOT}/web/themes/custom/site_theme | |
gulp "$@" |