OSDN Git Service

「メンバーの編集(editmembersettings)」画面でスキン変数<%pluginextras%>がパースされていなかった不具合を修正
[nucleus-jp/nucleus-next.git] / createaccount.php
index 1fa06d3..0cc16dd 100644 (file)
  * Registration form for new users
  * @license http://nucleuscms.org/license.txt GNU General Public License
  * @copyright Copyright (C) 2002-20011 The Nucleus Group
- * @version $Id: createaccount.php 1624 2012-01-09 11:36:20Z sakamocchi $
+ * @version $Id: createaccount.php 1888 2012-06-17 08:38:54Z sakamocchi $
  */
 
-       require_once "./config.php";
-       //include $DIR_LIBS."ACTION.php";
-       include_libs('ACTION.php',false,false);
-       
-       if (isset ($_POST['showform']) && $_POST['showform']==1) {
-               $showform = 1;
-       }
-       else {
-               $showform = 0;
-       }
-       sendContentType('text/html', 'createaccount');
-?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html>
-<head>
-       <title>Create Member Account</title>
-       <style type="text/css">@import url(nucleus/styles/manual.css);</style>
-</head>
-<body>
+// we are using admin stuff:
+$CONF = array();
+$CONF['UsingAdminArea'] = 1;
 
-       <h1>Create Account</h1>
+require_once "./config.php";
+include_libs('ACTION.php');
 
-<?php
-       // show form only if Visitors are allowed to create a Member Account
-       if ($CONF['AllowMemberCreate']==1) { 
-               // if the form is shown the first time no POST data 
-               // will be added as value for the input fields
-               if ($showform==0) {
-?>
-
-       <form method="post" action="createaccount.php">
-
-       <div>
-       <input type="hidden" name="showform" value="1" />
-       <input type="hidden" name="action" value="createaccount" />
-       
-               Login Name (required): 
-               <br />
-               <input name="name" size="32" maxlength="32" /> <small>(only a-z, 0-9)</small>
-               <br />
-               <br />          
-               Real Name (required): 
-               <br />
-               <input name="realname" size="40" />
-               <br />
-               <br />          
-               Email (required):
-               <br />
-               <input name="email" size="40" /> <small>(must be valid, because an activation link will be sent over there)</small>
-               <br />
-               <br />          
-               URL: 
-               <br />
-               <input name="url" size="60" />
-               <br />
-               <?php
-               // add extra fields from Plugins, like NP_Profile
-               $manager->notify('RegistrationFormExtraFields', array('type' => 'createaccount.php', 'prelabel' => '', 'postlabel' => '<br />', 'prefield' => '', 'postfield' => '<br /><br />'));
-               // add a Captcha challenge or something else
-               global $manager;
-               $manager->notify('FormExtra', array('type' => 'membermailform-notloggedin'));
-               ?>
-               <br />
-               <br />                                          
-               <input type="submit" value="Create Account" />
-       </div>
-
-       </form>
-<?php
-               } // close if showfrom ...
-               else {
-               // after the from is sent it will be validated
-               // POST data will be added as value to treat the user with care (;-))
-       
-               $a = new ACTION();
-
-               // if createAccount fails it returns an error message 
-               $message = $a->createAccount();
-
-               echo '<span style="font-weight:bold; color:red;">'.$message.'</span><br /><br />'; 
-?>
-       
-               <form method="post" action="createaccount.php">
-
-       <div>
-       <input type="hidden" name="showform" value="1" />
-       <input type="hidden" name="action" value="createaccount" />
-       
-               Login Name (required): 
-               <br />
-               <input name="name" size="32" maxlength="32" <?php if(isset($_POST['name'])){echo 'value="'.i18n::hsc($_POST['name']).'"';}?>/> <small>(only a-z, 0-9)</small>
-               <br />
-               <br />          
-               Real Name (required): 
-               <br />
-               <input name="realname" size="40" <?php if(isset($_POST['realname'])){echo 'value="'.i18n::hsc($_POST['realname']).'"';}?>/>
-               <br />
-               <br />          
-               Email (required):
-               <br />
-               <input name="email" size="40" <?php if(isset($_POST['email'])){echo 'value="'.i18n::hsc($_POST['email']).'"';}?>/> <small>(must be valid, because an activation link will be sent over there)</small>
-               <br />
-               <br />          
-               URL: 
-               <br />
-               <input name="url" size="60" <?php if(isset($_POST['url'])){echo 'value="'.i18n::hsc($_POST['url']).'"';}?>/>
-               <br />
-               <?php
-               // add extra fields from plugin, like NP_Profile
-               $manager->notify('RegistrationFormExtraFields', array('type' => 'createaccount.php', 'prelabel' => '', 'postlabel' => '<br />', 'prefield' => '', 'postfield' => '<br /><br />'));
-               // add a Captcha challenge or something else
-               global $manager;
-               $manager->notify('FormExtra', array('type' => 'membermailform-notloggedin'));
-               ?>
-               <br />
-               <br />
-               <input type="submit" value="Create Account" />
-       </div>
-
-       </form>
-<?php
-               }       // close else showform ...
-
-}
-else { 
-       echo 'Visitors are not allowed to create a Member Account.<br /><br />';
-       echo 'Please contact the website administrator for more information.';
+if ( !Admin::initialize() )
+{
+       /* TODO: something to handling errors */
+       exit;
 }
-?>
-       
-       
-</body>
-</html>
\ No newline at end of file
+
+Admin::action('createaccount');
+exit;