Skip to main content
[2020-09-11]

Using ReactPHP to consume data from an HTTP API

#reactphp #php

This is the first of two blogs detailing how to build a middleware leveraging ReactPHP to consume data from an API, normalize it, and then push that data into Drupal through JSON:API. In this example will be grabbing data from the PokéAPI.

[2016-10-22]

Conductor, a Composer UI

#php #drupal #composer #electron

Developers have many tools. We have version control systems, we have dependency management tools, we have build and task automation tools. What is one thing they all have in common? They are command line tools.

[2013-02-10]

Tips & Tricks: the WordPress Photo Gallery

#css #php #wordpress
With WordPress 3.5 came an awesome revamp of the media library that allows users to easily place a photo gallery from new and old images within the media library. The gallery shortcode was introduced and provides quite a few different features, all available from a user interface and not just shortcode attributes.
[2012-12-11]

Social Icon Widget

#php #plugin #social #wordpress
We all want to show off our social networks on our blog or website, especially our clients. Businesses need to have a profile on all major services in modern markets, and it is not hard recreating this multiple times; but, it can be annoying.
[2012-06-20]

Custom Form Fields in Joomla

#joomla #php #tutorial
When I was developing my Joomla! components to make my GRealty suite I needed a few custom fields that were not native to Joomla The process is simple and only requires one new folder and one new file in your component. In your components admin/models/  folder create a new folder called 'fields'.
[2012-01-22]

Simple PHP Calendar Script

#php
Here is a simple PHP calendar script that can be easily customized and designed with CSS.
<?php

$time = time();

$numDay = date('d', $time);
$numMonth = date('m', $time);
$strMonth = date('F', $time);
$numYear = date('Y', $time);
$firstDay = mktime(0,0,0,$numMonth,1,$numYear);
$daysInMonth = cal_days_in_mo