Skip to main content
148
results
Andrew Fletcher
Explain public, private, protected functions and variables inside a class in PHP. I'll define a variable as a property public method or property this is the default and can be accessed anywhere protected method or property that can be accessed by the class that declared it or that inherits the class private method or property that can only be accessed by the class that declared...
Andrew Fletcher
Assuming there is a new field requiring a change on a content type. How do you...
Andrew Fletcher
Replicate Replicate the bug in your local environment. Check Check - do you have...
Andrew Fletcher
2 or 3 approaches to build a homepage or landing page through Drupal Please...
Andrew Fletcher
Drupal cache is one of the major subsystems that deliver Drupal's flexibility...
Andrew Fletcher
My goal was to get the base URL and compare it with the URL of the link.  Was it an internal or external link?  You can get the hostname, "{your_domain}", directly from the getHost() request: $host = \Drupal::request()->getHost();However, if you need the schema as well, such as https://{your_domain} $host = \Drupal::request()->getSchemeAndHttpHost();  In my situation, I needed to redirect the page to an external site and count the page.  So $cache =...
Andrew Fletcher
  JSON structure Outlining the structure of the elements common attributes:...
Andrew Fletcher
Whilst I had regularly used HAL to upload files through REST API, this is no...
Andrew Fletcher
How do you retrieve a taxonomy term tid value from it's name? In this situation,...
Andrew Fletcher
If you are like me, almost every view I have will have this filter.  So I...
Andrew Fletcher
Have you come across the following Drupal error message: Mismatched entity and/or field definitions. The following changes were detected in the entity type and field definitions.Run a database update status check drush updatedb:status --entity-updatesResponse ------------------ ---------------------------------- --------------- ---------------------------------------------------------------------- Module Update ID Type Description ...
Andrew Fletcher
Working on a decoupled React / Drupal 9 site. Aim: Adjust the output of curated...
Andrew Fletcher
How to make React calls on a Drupal 9 backend site using the search...
Andrew Fletcher
In this instance, I'll check the beginning of the string.  I want to focus...
Andrew Fletcher
  Using the Drupal Poll module and passing via RESTful API -  How do...