Skip to content

Instantly share code, notes, and snippets.

View signalpoint's full-sized avatar

Tyler Frankenstein signalpoint

View GitHub Profile
@signalpoint
signalpoint / resend.php
Last active November 19, 2015 18:51 — forked from gavinblair/resend.php
Drupal - resend welcome e-mails on users administration form.
<?php
/**
* Implements hook_user_operations().
*/
function example_user_operations() {
$operations = array(
'example_resend_welcome_email' => array(
'label' => t('Re-send welcome e-mail'),
'callback' => 'example_resend_welcome_email',