Skip to main content
145
results
Andrew Fletcher
Loading the node To query the node, I prefer to create a series of functions to mange the process in a class.  However, keeping this simple, this can be achieved through: $node = \Drupal\node\Entity\Node::load($nid);Otherwise if you require to load multiple nodes, where the list of node.nids is in an array. $nodes = \Drupal::entityTypeManager()->getStorage('node'); $this->list = $nodes->loadMultiple($this->nids);  Whereas, if you are looking to query the node database for...
Andrew Fletcher
If you are like me you probably have searched for clues to and found little......
Andrew Fletcher
Registering a user via REST is an important process particularly when the...
Andrew Fletcher
As a process I apply patches locally first, then using git upload the update(s)...
Andrew Fletcher
While the Drupal site has a great outline of the steps to follow, I found we...
Andrew Fletcher
First transfer the drupal-8.8.x.tar.gz file to your directory Via your ssh program (for us Terminal on OSX), enter the path to the directory where you transferred the drupal-8.8.x file gunzip -c drupal-8.8.0.tar.gz | tar xopf - rm -rf /var/www/vhosts/example.com/subdir/drupal-8.8.0.tar.gz rm -rf /var/www/vhosts/example.com/subdir/core ; rm -rf /var/www/vhosts/example.com/subdir/modules ; rm -rf /var/www/vhosts/example.com/subdir/profiles ; rm -rf...
Andrew Fletcher
While I have posted an article about how to POST an image using REST in Drupal...
Andrew Fletcher
In Drupal 8.x hiding the subject line is a quick task. In the admin area of your...
Andrew Fletcher
You have been working hard on getting comments being added (POST) through REST...
Andrew Fletcher
For others that have spent countless hours getting this to work and are...