Mercurial > hg > rr-repo
view sites/all/modules/restws/restws_basic_auth/restws_basic_auth.install @ 13:134d4b2e75f6
updated quicktabs and google analytics modules
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Tue, 29 Oct 2013 13:48:59 +0000 |
parents | ce11bbd8f642 |
children |
line wrap: on
line source
<?php /** * @file * Basic authentication login - install file. */ /** * Implements hook_uninstall(). */ function restws_basic_auth_uninstall() { variable_del('restws_basic_auth_user_regex'); } /** * Set the user name regex to accept all for backwards compatibility. */ function restws_basic_auth_update_7100() { // Set the user name regex to accept all. variable_set('restws_basic_auth_user_regex', '/.*/'); }