<?php
/*
* Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
* Copyright (C) 2002-2009 The Nucleus Group
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* (see nucleus/documentation/index.html#license for more info)
*/
/**
* @license http://nucleuscms.org/license.txt GNU General Public License
* @copyright Copyright (C) 2002-2009 The Nucleus Group
* @version $Id: index.php 1491 2011-01-03 23:00:35Z ftruscot $
*/
// we are using admin stuff:
$CONF = array();
$CONF['UsingAdminArea'] = 1;
// include the admin code
require_once('../config.php');
if ($CONF['alertOnSecurityRisk'] == 1)
{
// check if files exist and generate an error if so
$aFiles = array(
'../install.sql' => _ERRORS_INSTALLSQL,
'../install.php' => _ERRORS_INSTALLPHP,
'upgrades' => _ERRORS_UPGRADESDIR,
'convert' => _ERRORS_CONVERTDIR
);
$aFound = array();
foreach($aFiles as $fileName => $fileDesc)
{
if (@file_exists($fileName))
array_push($aFound, $fileDesc);
}
if (@is_writable('../config.php')) {
array_push($aFound, _ERRORS_CONFIGPHP);
}
if (sizeof($aFound) > 0)
{
startUpError(
_ERRORS_STARTUPERROR1. implode($aFound, '</li><li>')._ERRORS_STARTUPERROR2,
_ERRORS_STARTUPERROR3
);
}
}
$bNeedsLogin = false;
$bIsActivation = in_array($action, array('activate', 'activatesetpwd'));
if ($action == 'logout')
$bNeedsLogin = true;
if (!$member->isLoggedIn() && !$bIsActivation)
$bNeedsLogin = true;
// show error if member cannot login to admin
if ($member->isLoggedIn() && !$member->canLogin() && !$bIsActivation) {
$error = _ERROR_LOGINDISALLOWED;
$bNeedsLogin = true;
}
if ($bNeedsLogin)
{
setOldAction($action); // see ADMIN::login() (sets old action in POST vars)
$action = 'showlogin';
}
sendContentType('text/html', 'admin-' . $action);
$admin = new ADMIN();
$admin->action($action);
?>