Skip to content

Instantly share code, notes, and snippets.

View quiptime's full-sized avatar

Siegfried Neumann quiptime

View GitHub Profile
/**
* Get URI parameter.
*
* @param string $str
* Example to use $str urldecode(drupal_get_destination()).
* @return array
*/
function _more_node_buttons_get_params($str) {
$chunks = explode("?", $str);
$params = explode("&", $chunks[1]);
@quiptime
quiptime / drupalir.sh
Created April 15, 2010 01:42
Script to provide Drupal 7 installation requirements.
#! /bin/sh
# drupalir.sh, v 0.9.1
#
# Supplied by Quiptime Group
# Developed 2010 by Siegfried Neumann <quiptime@gmail.com>
#
# This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License as published by the Free Software Foundation.