Parent Directory
|
Revision Log
|
Revision Graph
Updated HEAD to be the same as 5.x-1.1, so that we can start the 6.x development
| 1 | <?php |
| 2 | // $Id: singlesignon.install,v 1.1.2.3 2008/05/02 03:19:25 wayland76 Exp $ |
| 3 | |
| 4 | |
| 5 | /** |
| 6 | * Implementation of hook_uninstall(). |
| 7 | */ |
| 8 | function singlesignon_uninstall() { |
| 9 | $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'singlesignon\_%'"); |
| 10 | while ($variable = db_fetch_object($settings)) { |
| 11 | variable_del($variable->name); |
| 12 | } |
| 13 | } |
| 14 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |