Ignore:
Timestamp:
Mar 25, 2011, 6:15:08 PM (13 years ago)
Author:
Eric
Message:

merging r9827, r9846 and r9853 from trunk to branch 2.20

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/branches/2.20/maintain.inc.php

    r9254 r9854  
    44{
    55  define('UAM_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
    6 }
    7 if (!defined('UAM_ROOT'))
    8 {
    9   define('UAM_ROOT', dirname(__FILE__).'/');
    106}
    117
     
    2824The admin of the gallery.','false','false','false','false','false','Sorry [username], your account has been deleted due to a too long time passed since your last visit at [mygallery].','Sorry [username], your account has been deprecated due to a too long time passed since your last visit at [mygallery]. Please, use the following link to revalidate your account.',-1,-1,'Thank you for registering at [mygallery]. Your account has been manually validated by _admin_. You may now log in at _link_to_site_ and make any appropriate changes to your profile. Welcome to _name_of_site_!','false','You have requested a password reset on our gallery. Please, find below your new connection settings.','false','Sorry, your account has been deleted because you have not validated your registration in requested time. Please, try registration with a valid and non blocked email account.','false');
    2925
    30   $q = '
     26        $query = '
     27SELECT param
     28  FROM '.CONFIG_TABLE.'
     29WHERE param = "UserAdvManager"
     30;';
     31  $count = pwg_db_num_rows(pwg_query($query));
     32 
     33  if ($count == 0)
     34  {
     35    $q = '
    3136INSERT INTO '.CONFIG_TABLE.' (param, value, comment)
    3237VALUES ("UserAdvManager","'.addslashes(serialize($default1)).'","UAM parameters")
    3338  ;';
    34   pwg_query($q);
     39    pwg_query($q);
     40  }
    3541
    3642
     
    4551Note: After this period, your account will be permanently deleted.','You have confirmed that you are human and may now use [mygallery]! Welcome [username]!','Your activation key is incorrect or expired or you have already validated your account, please contact the webmaster to fix this problem.');
    4652
    47   $q = '
     53        $query = '
     54SELECT param
     55  FROM '.CONFIG_TABLE.'
     56WHERE param = "UserAdvManager_ConfirmMail"
     57;';
     58  $count = pwg_db_num_rows(pwg_query($query));
     59 
     60  if ($count == 0)
     61  {
     62    $q = '
    4863INSERT INTO '.CONFIG_TABLE.' (param, value, comment)
    4964VALUES ("UserAdvManager_ConfirmMail","'.addslashes(serialize($default2)).'","UAM ConfirmMail parameters")
    5065  ;';
    51   pwg_query($q);
    52  
    53   $q = '
     66    pwg_query($q);
     67  }
     68
     69        $query = '
     70SELECT param
     71  FROM '.CONFIG_TABLE.'
     72WHERE param = "UserAdvManager_Redir"
     73;';
     74  $count = pwg_db_num_rows(pwg_query($query));
     75 
     76  if ($count == 0)
     77  {
     78    $q = '
    5479INSERT INTO '.CONFIG_TABLE.' (param, value, comment)
    5580VALUES ("UserAdvManager_Redir","0","UAM Redirections")
    5681  ;';
    57   pwg_query($q);
     82    pwg_query($q);
     83  }
     84
     85// Set current plugin version in config table
     86  $plugin =  PluginInfos(UAM_PATH);
     87  $version = $plugin['version'];
     88
     89        $query = '
     90SELECT param
     91  FROM '.CONFIG_TABLE.'
     92WHERE param = "UserAdvManager_Redir"
     93;';
     94  $count = pwg_db_num_rows(pwg_query($query));
     95 
     96  if ($count == 0)
     97  {
     98    $q = '
     99INSERT INTO '.CONFIG_TABLE.' (param, value, comment)
     100VALUES ("UserAdvManager_Version","'.$version.'","UAM version check")
     101  ;';
     102    pwg_query($q);
     103  }
    58104
    59105
Note: See TracChangeset for help on using the changeset viewer.