drupal

Adding a redirect to a URL within Drupal's Form API

$query_parameters = drupal_get_query_parameters();

//Check if the specified query paramater key is present in the current URL
if (empty($query_parameters['query_paramater_key'])) {

  $form_state['redirect'] = array('node/123',
    array('query' => array('foo' => 'bar'),'fragment' => 'baz');

}

Creating a Paragraph Entity programatically

Website for Our Saviour's Lutheran Church

Front page of oursaviours.net website

In 2013, I accepted a freelance gig from a former co-worker to help rework her church's website. She provided the design and the basic site architecture while another church member provided the majority of the written content. (How often do you get a writer/editor in a freelance project?) No part of the former site was to be migrated. So, for me, this was my first project that I started from scratch using Drupal 7.