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
drush eval "var_dump(Drupal\Component\Utility\Crypt::randomBytesBase64(55))" |
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 \AcceptanceTester\AuthenticatedSteps; | |
use \Codeception\Module\Drupal\ContentTypeRegistry\ContentType; | |
use \Codeception\Module\Drupal\Pages\AdminContentTypesPage; | |
use \Codeception\Module\Drupal\Pages\AdminManageFieldsPage; | |
/** | |
* Test defined content types and fields. | |
* | |
* @guy AcceptanceTester\AuthenticatedSteps |
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
git fetch --prune && git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d |
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 | |
/** | |
* @file | |
* Migrate D6 node body into D8 Paragraphs field. | |
* | |
* @see http://www.amitgoyal.in/2016/03/d6-d8-migration-d6-body-d8-paragraph-type-text.html | |
*/ | |
namespace Drupal\ixis_migrate_from_d6\Plugin\migrate\process; |
OlderNewer