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 | |
/* Ad hoc functions to make the examples marginally prettier.*/ | |
function isWebRequest() | |
{ | |
return isset($_SERVER['HTTP_USER_AGENT']); | |
} | |
function pageHeader($title) | |
{ |
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
#!/usr/bin/env php | |
<?php | |
require dirname(__DIR__) . '/vendor/autoload.php'; | |
if (php_sapi_name() != 'cli') { | |
throw new Exception('This application must be run on the command line.'); | |
} | |
$path_credentials = getenv('PUBLISH_CREDITS_CREDENTIALS') ?: 'credentials.json'; | |
$path_token = getenv('PUBLISH_CREDITS_TOKEN') ?: 'token.json'; |
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 | |
namespace Drupal\drush_empty_module\Bundle\node; | |
/** | |
* A bundle class for node entities. | |
*/ | |
class Article extends NodeBundleBase { | |
} |
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
This release features significant new features and a major refactor of our site alias remote communication. If Drush had a marketing department, they would have insisted on the number 10.0. We don't, so 9.6.0 it is. We did our very best to preserve existing APIs - please report any breakage. | |
Highlights | |
============ | |
- Now 100% ✅ on Windows. All PRs tested for regressions (via Appveyor). | |
- Now 100% ✅ for sqlite and postgres databases. Mysql has always been ✅. Our test bots run these tests every night. | |
- Add --filter to many commands (#3718). You may now filter output from any tabular commands. An example: `drush pm:list --filter=ctools`. [See docs for details and general info about output formats](http://docs.drush.org/en/master/output-formats-filters/). | |
- Deprecate drush_invoke_process(), backend.inc and context.inc. These are no longer used by Drush core and commandfiles are encouraged to use their replacements like Drush::drush(). These APIs will be removed in Drush 10. This is a HUGE win for the maintaina |
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
> phpunit --debug --colors --bootstrap=src/bootstrap.php --printer '\Drupal\Tests\Listeners\HtmlOutputPrinter' tests | |
PHPUnit 6.5.13 by Sebastian Bergmann and contributors. | |
[snip errors] | |
ERRORS! | |
Tests: 10, Assertions: 20, Errors: 5. | |
HTML output was generated | |
http://drupal/sites/simpletest/browser_output/weitzman_DrupalTestTraits_Tests_Mail_MailCollectorTraitTest-1-dtt.html |
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 your module's testing namespace such as the one below. | |
namespace Drupal\Tests\moduleName\ExistingSite; | |
use Drupal\taxonomy\Entity\Vocabulary; | |
use Drupal\user\Entity\User; | |
use weitzman\DrupalTestTraits\ExistingSiteBase; | |
/** |
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
Host * | |
IdentityFile /run/secrets/mass_id_rsa |
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
eval `ssh-agent -s` > /dev/null 2>&1 | |
ssh-add /var/run/secrets/mass_id_rsa |
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
# | |
# Copy and rename this file to .env at root of this project. | |
# | |
# Set a docker caching specification for the code mount. | |
# | |
# File access in hosted volumes can be very slow on Mac due to issues with the | |
# filesystem. Using cached or delegated here can really speed things up, but | |
# this isn't a cross-platform feature. | |
# See https://docs.docker.com/compose/compose-file/#caching-options-for-volume-mounts-docker-for-mac |
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
- run: docker-compose stop --timeout 30 mysql | |
- run: docker login -u $DOCKER_USER -p $DOCKER_API_KEY | |
- run: docker commit $(docker-compose ps -q mysql) mass/mysql-sanitized:latest | |
- run: docker push mass/mysql-sanitized:latest |
NewerOlder