developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
Selected filter
50
results
Andrew Fletcher
•
To sort through a multidimensional array seems to be a function that I occasionally call on. Handy to have referenced here:
/**
* Loop through a multi dimensional array
*
* @param array $haystack
* Data array.
*/
protected function sortMultiDimensionalArray($haystack)
{
foreach ($haystack as $key => $item) {
// If $item is an array and the number of children is greater to one
// keep looping through the array.
if (is_array($item) &&...
Andrew Fletcher
•
phpcs issue in Visual Studio Code, I'm receiving this warning in VS...
Andrew Fletcher
•
Had the situation where you are running composer however, the scripts stops with...
Andrew Fletcher
•
Oh the treasure of a client coming to you with a site they have removed the...
Andrew Fletcher
•
I installed Lando 3.6.2 and Laravel 9. When I visit the web page, I...
Andrew Fletcher
•
Updating to PHP 8.1, I found this interesting code stop...
Deprecated function: trim(): Passing null to parameter #1 ($string) of type string is deprecated in bales_preprocess() (line 162 of /var/www/{path/to/file})
What is trim(). Very simply, it removes whitespaces (if they exist) at the start or end of a string.
Andrew Fletcher
•
Running Docker
Dangerous word... I'm assuming that Docker is installed....
Andrew Fletcher
•
You can create a new date/time format by navigating to:
Admin ->...
Andrew Fletcher
•
In this article, you will learn how to update a newsletter template...
Andrew Fletcher
•
There are times when other Joomla! administrators of the site leave a page...
Andrew Fletcher
•
Cached data - keep it or clear it out?
You might have noticed, but when opening an app or visiting a website for the first time can take longer than on a subsequent visits to the same site. This extra time taken is primarily due to our devices not having cached data for the website or app.
If you’re not quite sure what cached data is, let's take a quick look.
Cached data are files, scripts, images, and other multimedia stored on your device after opening an app or...
Andrew Fletcher
•
Adding a new user to your Joomla! website using Community Builder.
Out of the...
Andrew Fletcher
•
In this article, I will show you how to update an existing member's details...
Andrew Fletcher
•
In this article, I'll show you how to create a new an Acy Mailing 5...
Andrew Fletcher
•
In this article, I'll show you how to manage an Acy Mailing 5 subscription...