source: extensions/UserAdvManager/trunk/GT_del_account.php @ 17969

Last change on this file since 17969 was 14651, checked in by Eric, 12 years ago

Bug 2620 fixed - Display of ConfirmMail, rejected and del_account pages have been improved
Bug 2621 fixed - Display of ConfirmMail, rejected and del_account pages have been improved for IE8 and IE9 render
Bug 2631 fixed - Piwigo 2.4 compliance : $confgallery_url replaced by get_gallery_home_url() for [myurl] tag

  • Property svn:eol-style set to LF
File size: 1.7 KB
Line 
1<?php
2//----------------------------------------------------------- include
3define('PHPWG_ROOT_PATH','./../../');
4
5include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
6
7include_once (UAM_PATH.'include/constants.php');
8include_once (UAM_PATH.'include/functions.inc.php');
9
10$title= l10n('UAM_Deleted_Account_Redirection_Page');
11$page['body_id'] = 'theAboutPage';
12include(PHPWG_ROOT_PATH.'include/page_header.php');
13
14@include(PHPWG_ROOT_PATH.'template/'.$user['template'].
15  '/theme/'.$user['theme'].'/themeconf.inc.php');
16
17
18global $user, $lang, $conf, $errors;
19 
20
21$conf_UAM = unserialize($conf['UserAdvManager']);
22
23if (isset($conf_UAM[23]) and $conf_UAM[23] <> '')
24{
25  // Management of Extension flags ([mygallery], [myurl]) - [username] flag can't be used here
26  // -----------------------------------------------------------------------------------------
27  $patterns[] = '#\[mygallery\]#i';
28  $replacements[] = $conf['gallery_title'];
29  $patterns[] = '#\[myurl\]#i';
30  $replacements[] = get_gallery_home_url();
31
32  if (function_exists('get_user_language_desc'))
33  {
34    $custom_text = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM[23]));
35  }
36  else $custom_text = l10n(preg_replace($patterns, $replacements, $conf_UAM[23]));
37}
38
39$Path_UAM = UAM_PATH; // Path to be used in template to reach the icons
40
41$template->assign(
42  array(
43    'UAM_PATH'             => $Path_UAM,
44    'CUSTOM_REDIR_MSG'     => $custom_text,
45  )
46);
47
48if (isset($lang['Theme: '.$user['theme']]))
49{
50  $template->assign(
51        'THEME_ABOUT',l10n('Theme: '.$user['theme'])
52  );
53}
54
55$template->set_filenames(
56  array(
57        'UAM_RedirPage'=>dirname(__FILE__).'/template/del_account.tpl',
58        )
59);
60
61$template->pparse('UAM_RedirPage');
62include(PHPWG_ROOT_PATH.'include/page_tail.php');
63?>
Note: See TracBrowser for help on using the repository browser.