source: extensions/UserAdvManager/trunk/USR_del_account.php @ 11018

Last change on this file since 11018 was 11018, checked in by Eric, 13 years ago

Remove all options related to comments because they are processed in new "Comments Access Manager" plugin.
New version 2.20.8 hard coded for publication.

  • Property svn:eol-style set to LF
File size: 1.6 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[31]) and $conf_UAM[31] <> '')
24{
25  // Management of Extension flags ([mygallery], [myurl]) - [username] flag can't be used here
26  $patterns[] = '#\[mygallery\]#i';
27  $replacements[] = $conf['gallery_title'];
28  $patterns[] = '#\[myurl\]#i';
29  $replacements[] = $conf['gallery_url'];
30
31  if (function_exists('get_user_language_desc'))
32  {
33    $custom_text = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM[31]));
34  }
35  else $custom_text = l10n(preg_replace($patterns, $replacements, $conf_UAM[31]));
36}
37   
38$template->assign(
39  array(
40    'GALLERY_URL'          => make_index_url(),
41    'CUSTOM_REDIR_MSG'     => $custom_text,
42  )
43);
44
45if (isset($lang['Theme: '.$user['theme']]))
46{
47  $template->assign(
48        'THEME_ABOUT',l10n('Theme: '.$user['theme'])
49  );
50}
51
52$template->set_filenames(
53  array(
54        'UAM_RedirPage'=>dirname(__FILE__).'/template/del_account.tpl',
55        )
56);
57
58$template->pparse('UAM_RedirPage');
59include(PHPWG_ROOT_PATH.'include/page_tail.php');
60?>
Note: See TracBrowser for help on using the repository browser.