Automatically update the created date for talks

Automatically update the created dates for talk nodes so that they match
the most-future event. This means that the talks are ordered correctly
on the Talks page.
This commit is contained in:
Oliver Davies 2020-05-08 18:46:31 +01:00
parent fe5340d1c7
commit 7a9bf80a89
18 changed files with 412 additions and 6 deletions

View file

@ -9,10 +9,14 @@ symfony php vendor/bin/phpcs -n \
--exclude="Drupal.Commenting.ClassComment,Drupal.Commenting.FunctionComment" \
web/modules/custom
# symfony php vendor/bin/phpcs -ns \
# --standard="Drupal,DrupalPractice" \
# --extensions="php,module,inc,install,test,profile,theme" \
# --exclude="Drupal.Commenting.ClassComment,Drupal.Commenting.DocComment,Drupal.Commenting.FunctionComment,Drupal.NamingConventions.ValidFunctionName" \
# web/modules/custom/**/tests
symfony php vendor/bin/phpcs -n \
--standard="Drupal,DrupalPractice" \
--extensions="php,module,inc,install,test,profile,theme" \
--exclude="Drupal.Commenting.ClassComment,Drupal.Commenting.DocComment,Drupal.Commenting.FunctionComment,Drupal.NamingConventions.ValidFunctionName" \
web/modules/custom/**/tests
vendor/bin/phpstan analyze
symfony php vendor/bin/phpunit \
-c web/core \
"$@"