source: trunk/register.php @ 1851

Last change on this file since 1851 was 1851, checked in by rub, 17 years ago

o Proposition: improved display of 'x images in y sub-categories' or 'x images in this category' for cases when categories contain both images and sub-categories
o Good idea of this new way for way confguest_access, but I kept last implementation for access methods (Could be useful on future development)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $Id: register.php 1851 2007-02-22 20:20:30Z rub $
9// | last update   : $Date: 2007-02-22 20:20:30 +0000 (Thu, 22 Feb 2007) $
10// | last modifier : $Author: rub $
11// | revision      : $Revision: 1851 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28//----------------------------------------------------------- include
29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
31
32// +-----------------------------------------------------------------------+
33// | Check Access and exit when user status is not ok                      |
34// +-----------------------------------------------------------------------+
35check_status(ACCESS_NONE);
36
37//----------------------------------------------------------- user registration
38
39if (!$conf['allow_user_registration'])
40{
41  page_forbidden('User registration closed');
42}
43
44$errors = array();
45if (isset($_POST['submit']))
46{
47  if ($_POST['password'] != $_POST['password_conf'])
48  {
49    array_push($errors, $lang['reg_err_pass']);
50  }
51
52  $errors =
53    array_merge(
54      $errors,
55      register_user($_POST['login'],
56                    $_POST['password'],
57                    $_POST['mail_address'])
58      );
59
60  if (count($errors) == 0)
61  {
62    $user_id = get_userid($_POST['login']);
63    log_user( $user_id, false);
64
65    if ($conf['email_admin_on_new_user'])
66    {
67      include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
68      $username = $_POST['login'];
69      $admin_url = get_absolute_root_url()
70        .'admin.php?page=user_list&username='.$username;
71
72      $content =
73        'User: '.$username."\n"
74        .'Mail: '.$_POST['mail_address']."\n"
75        .'IP: '.$_SERVER['REMOTE_ADDR']."\n"
76        .'Browser: '.$_SERVER['HTTP_USER_AGENT']."\n\n"
77        .l10n('admin').': '.$admin_url;
78
79      pwg_mail
80      (
81        format_email('administrators', get_webmaster_mail_address()),
82        array
83        (
84          'subject' => 'PWG '.l10n('register_title').' '.$username,
85          'content' => $content,
86          'Bcc' => get_administrators_email()
87        )
88      );
89    }
90    redirect(make_index_url());
91  }
92}
93
94$login = !empty($_POST['login'])?$_POST['login']:'';
95$email = !empty($_POST['mail_address'])?$_POST['mail_address']:'';
96
97//----------------------------------------------------- template initialization
98//
99// Start output of page
100//
101$title= $lang['register_page_title'];
102$page['body_id'] = 'theRegisterPage';
103include(PHPWG_ROOT_PATH.'include/page_header.php');
104
105$template->set_filenames( array('register'=>'register.tpl') );
106$template->assign_vars(array(
107  'U_HOME' => make_index_url(),
108
109  'F_ACTION' => 'register.php',
110  'F_LOGIN' => $login,
111  'F_EMAIL' => $email
112  ));
113
114//-------------------------------------------------------------- errors display
115if ( sizeof( $errors ) != 0 )
116{
117  $template->assign_block_vars('errors',array());
118  for ( $i = 0; $i < sizeof( $errors ); $i++ )
119  {
120    $template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i]));
121  }
122}
123
124$template->parse('register');
125include(PHPWG_ROOT_PATH.'include/page_tail.php');
126?>
Note: See TracBrowser for help on using the repository browser.