This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# drupalir.sh, v 0.9.1 | |
# | |
# Supplied by Quiptime Group | |
# Developed 2010 by Siegfried Neumann <[email protected]> | |
# | |
# 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. |