/[drupal]/contributions/modules/user_profile_theme/user_profile_theme.install
ViewVC logotype

Contents of /contributions/modules/user_profile_theme/user_profile_theme.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Sat Oct 13 11:32:18 2007 UTC (2 years, 1 month ago) by davyvandenbremt
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
File MIME type: text/x-php
*** 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