developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
491
results
Andrew Fletcher
•
Having Drupal Solr Search APi running, I thought adding synonyms to the mix would be a smooth process.
Install synonym module
I cam across a synonym module created by Jens Beltofte - Search API Synonym. Working on a Drupal 9.3.x installation, this module needs to be accessed via Git Search API Synonym,
There are lots of great tips as you work through the installation, depending on what version of Drupal and Drush you are using.
Drush commands
Once you have...
Andrew Fletcher
•
I want to create a content type that has a paragraph. Easy enough.
What...
Andrew Fletcher
•
Creating URL's in Drupal programmatically:
Internal path
use...
Andrew Fletcher
•
Working in Drupal 9.x, I was loading images via the Media module. Below 1...
Andrew Fletcher
•
Have you tried to run a composer update script that...
Andrew Fletcher
•
Since upgrading to Drupal 9.3.0 have you come across this error?
Edit mediaTypeError
: Argument 1 passed to Drupal\Core\File\FileUrlGenerator::generateString() must be of the type string, null given, called in /app/web/sites/default/files/php/twig/61baa150bc5f6_media--document.html.twig_h9bK0We32VfjIKYeac5J1n4Mn/6wcKI-HiereIg8aXE0Znemy4PM0s6woj_Cr2Trl_U68.php on line 59 in
Drupal\Core\File\FileUrlGenerator->generateString()
(line 58 of...
Andrew Fletcher
•
Have you noticed through your Google account that there are items being indexed...
Andrew Fletcher
•
Like many devs at the moment, looking for log4j2 on your server... how to...
Andrew Fletcher
•
I’m recently doing an IoT project. I wanted to investigate the network...
Andrew Fletcher
•
When you have an entity ID value such as node ID (nid) or taxonomy term ID, how...
Andrew Fletcher
•
I had a couple of instances where I needed to check if an object field existed. Initially I used propertyExists. However, when running Solr, it tripped on this command. So some other function was required. And in steps hasField(). It is a good idea to validate the existence before using it to avoid any unexpected error.
Code:
$entity->hasField('fieldName');
Drupal API hasField() function determines if Drupal entity has a field with a given name...
Andrew Fletcher
•
In drupal 9 for logging you can use logger service to log array data...
Andrew Fletcher
•
You would have come across a URL string that appears...
Andrew Fletcher
•
It is really simple to switch users in Ubuntu or any other Linux distribution...
Andrew Fletcher
•
Adding Solr config zip (ie. solr_8.x_config.zip) to your remote...