Using personal access tokens with github
The format is the following:
git remote set-url origin https://USERID:PERSONAL_ACCESS_TOKEN@github.cms.gov/CMCS/MedicaidDrupal.git
Personal access token you generate from github under settings->developer settings->Personal access tokens
your .git/config should have a section that looks like this:
Delete all content of a given content type
lando drush genc 0 --kill --bundles=survey_2021
or, this actually worked for me:
drush entity-delete node --bundle=survey_2021
git get the history of a line of code
git get the history of a line of code, in this case line 1427 of wr_investor.module
git log -L1427,+1:'wr_investor.module'
composer timeout issues
composer config --global process-timeout 6000
someone also suggested:
lando composer dump lando composer clearcache git pull origin develop delete vendor folder lando composer install
phpcbf to auto fix phpcs / lint issues
/Users/jamesbarnett/sites/AMA/freida/vendor/bin/phpcbf --standard=Drupal --extensions=php,module,inc,install,test,profile,theme,css,info --report=full /Users/jamesbarnett/sites/AMA/freida/docroot/modules/custom/freida_bulk_delete/src/Commands/DeleteUserKeepContent.php
Ajax calls in Drupal
To send the json data in JavaScript
var xmlhttp = new XMLHttpRequest(); // new HttpRequest instance xmlhttp.open("POST", "/user/17352/post-dashboard"); xmlhttp.setRequestHeader("Content-Type", "application/json"); xmlhttp.send(JSON.stringify({advisorcomment:advisorComment}));
To receive the json data in PHP
$json_string = \Drupal::request()->getContent(); $decoded = \Drupal\Component\Serialization\Json::decode($json_string); print_r($decoded); $name = $decoded['name']; return new JsonResponse($name);
Drupal force text to be markup
use Drupal\Core\Render\Markup;
$link_text = Markup::create('' . $title . '');
Platform.sh commands
Activate a new branch and have it register in platform.sh:
platform environment:activate new-feature
Importing data:
platform environment:list
+------+-------+--------+------------+
| ID | Title | Status | Type |
+------+-------+--------+------------+
| main | Main | Active | production |
+------+-------+--------+------------+
platform sql < my_database_backup.sql
or if can't determine current environment:
platform sql -e main < talktoyourdata.sql
Exporting data:
platform db:dump --gzip