OSDN Git Service

4.0のtrunkを展開するためにmasterディレクトリを作成しファイル群を移動した。
[nucleus-jp/nucleus-jp-ancient.git] / master / nucleus / index.php
1 <?php
2 /*
3  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
4  * Copyright (C) 2002-2011 The Nucleus Group
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * (see nucleus/documentation/index.html#license for more info)
11  */
12 /**
13  * @license http://nucleuscms.org/license.txt GNU General Public License
14  * @copyright Copyright (C) 2002-2011 The Nucleus Group
15  * @version $Id$
16  * $NucleusJP: index.php,v 1.8.2.1 2007/09/07 07:36:09 kimitake Exp $
17  */
18         // we are using admin stuff:
19         $CONF = array();
20         $CONF['UsingAdminArea'] = 1;
21
22         // include the admin code
23         require_once('../config.php');
24
25         if ($CONF['alertOnSecurityRisk'] == 1)
26         {
27                 // check if files exist and generate an error if so
28                 $aFiles = array(
29                  '../install' => _ERRORS_INSTALLDIR,
30                         'upgrades'       => _ERRORS_UPGRADESDIR,\r
31                         'convert'        => _ERRORS_CONVERTDIR\r
32                 );
33                 $aFound = array();
34                 foreach($aFiles as $fileName => $fileDesc)
35                 {
36                         if (@file_exists($fileName))
37                                 array_push($aFound, $fileDesc);
38                 }
39                 if (@is_writable('../config.php')) {
40                         array_push($aFound, _ERRORS_CONFIGPHP);
41                 }
42                 if (sizeof($aFound) > 0)
43                 {
44                         startUpError(
45                                 _ERRORS_STARTUPERROR1. implode($aFound, '</li><li>')._ERRORS_STARTUPERROR2,\r
46                                 _ERRORS_STARTUPERROR3\r
47                         );
48                 }
49         }
50
51         $bNeedsLogin   = false;
52         $bIsActivation = in_array($action, array('activate', 'activatesetpwd'));
53
54         if ($action == 'logout')
55                 $bNeedsLogin = true;\r
56
57         if (!$member->isLoggedIn() && !$bIsActivation)
58                 $bNeedsLogin = true;\r
59
60         // show error if member cannot login to admin
61         if ($member->isLoggedIn() && !$member->canLogin() && !$bIsActivation) {
62                 $error       = _ERROR_LOGINDISALLOWED;
63                 $bNeedsLogin = true;
64         }
65
66         if ($bNeedsLogin)
67         {
68                 setOldAction($action);  // see ADMIN::login() (sets old action in POST vars)
69                 $action = 'showlogin';
70         }
71
72         sendContentType('text/html', 'admin-' . $action);
73
74         $admin = new ADMIN();
75         $admin->action($action);
76 ?>