Parent Directory
|
Revision Log
|
Revision Graph
*** empty log message ***
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @file |
| 5 | * Implementation of User Profile Theme module install and uninstall hooks.. |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Implementation of hook_install(). |
| 10 | */ |
| 11 | function user_profile_theme_install() { |
| 12 | variable_set('user_profile_theme_enabled', 1); |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Implementation of hook_uninstall(). |
| 17 | * |
| 18 | * @todo Remove all User Profile Theme CSS files. |
| 19 | */ |
| 20 | function user_profile_theme_uninstall() { |
| 21 | variable_del('user_profile_theme_enabled'); |
| 22 | } |
| 23 | |
| 24 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |