Skip to content

Instantly share code, notes, and snippets.

@ringmaster
Created April 19, 2012 14:46
Show Gist options
  • Save ringmaster/2421421 to your computer and use it in GitHub Desktop.
Save ringmaster/2421421 to your computer and use it in GitHub Desktop.
public function action_plugin_activation( $plugin_file )
{
if(!User::get_by_name('github_hook')) {
User::create(array(
'username' => 'github_hook',
'email' => '[email protected]',
'password' => sha1(rand(0,pow(2,32)));
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment