Changeset 9853 for extensions/NBC_UserAdvManager/trunk/maintain.inc.php
- Timestamp:
- Mar 25, 2011, 6:09:55 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/NBC_UserAdvManager/trunk/maintain.inc.php
r9846 r9853 24 24 The 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'); 25 25 26 $q = ' 26 $query = ' 27 SELECT param 28 FROM '.CONFIG_TABLE.' 29 WHERE param = "UserAdvManager" 30 ;'; 31 $count = pwg_db_num_rows(pwg_query($query)); 32 33 if ($count == 0) 34 { 35 $q = ' 27 36 INSERT INTO '.CONFIG_TABLE.' (param, value, comment) 28 37 VALUES ("UserAdvManager","'.addslashes(serialize($default1)).'","UAM parameters") 29 38 ;'; 30 pwg_query($q); 39 pwg_query($q); 40 } 31 41 32 42 … … 41 51 Note: 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.'); 42 52 43 $q = ' 53 $query = ' 54 SELECT param 55 FROM '.CONFIG_TABLE.' 56 WHERE param = "UserAdvManager_ConfirmMail" 57 ;'; 58 $count = pwg_db_num_rows(pwg_query($query)); 59 60 if ($count == 0) 61 { 62 $q = ' 44 63 INSERT INTO '.CONFIG_TABLE.' (param, value, comment) 45 64 VALUES ("UserAdvManager_ConfirmMail","'.addslashes(serialize($default2)).'","UAM ConfirmMail parameters") 46 65 ;'; 47 pwg_query($q); 48 49 $q = ' 66 pwg_query($q); 67 } 68 69 $query = ' 70 SELECT param 71 FROM '.CONFIG_TABLE.' 72 WHERE param = "UserAdvManager_Redir" 73 ;'; 74 $count = pwg_db_num_rows(pwg_query($query)); 75 76 if ($count == 0) 77 { 78 $q = ' 50 79 INSERT INTO '.CONFIG_TABLE.' (param, value, comment) 51 80 VALUES ("UserAdvManager_Redir","0","UAM Redirections") 52 81 ;'; 53 pwg_query($q); 82 pwg_query($q); 83 } 54 84 55 85 // Set current plugin version in config table 56 86 $plugin = PluginInfos(UAM_PATH); 57 87 $version = $plugin['version']; 58 $q = ' 88 89 $query = ' 90 SELECT param 91 FROM '.CONFIG_TABLE.' 92 WHERE param = "UserAdvManager_Redir" 93 ;'; 94 $count = pwg_db_num_rows(pwg_query($query)); 95 96 if ($count == 0) 97 { 98 $q = ' 59 99 INSERT INTO '.CONFIG_TABLE.' (param, value, comment) 60 100 VALUES ("UserAdvManager_Version","'.$version.'","UAM version check") 61 101 ;'; 62 63 pwg_query($q);102 pwg_query($q); 103 } 64 104 65 105
Note: See TracChangeset
for help on using the changeset viewer.