本文整理汇总了PHP中errorPage函数的典型用法代码示例。如果您正苦于以下问题:PHP errorPage函数的具体用法?PHP errorPage怎么用?PHP errorPage使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了errorPage函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
/**
* In this function, most actions of the module are carried out and the page generation is started, distibuted and rendered.
* @return void
* @see solidbase/lib/Page#run()
*/
function run()
{
global $Templates, $USER, $CONFIG, $Controller, $DB;
if (!$this->may($USER, READ | EDIT)) {
errorPage('401');
return false;
}
/**
* User input types
*/
$_REQUEST->setType('order', 'numeric', true);
$_REQUEST->setType('expand', 'bool');
$_REQUEST->setType('del', 'numeric');
if ($_REQUEST['del']) {
if ($Controller->{$_REQUEST['del']} && $Controller->{$_REQUEST['del']}->delete()) {
Flash::create(__('Newsitem removed'), 'confirmation');
}
}
/**
* Here, the page request and permissions decide what should be shown to the user
*/
$this->setContent('header', __('News'));
$this->setContent('main', $this->mainView());
$Templates->admin->render();
}
示例2: run
function run()
{
global $Templates, $DB, $Controller;
if (!$this->mayI(READ | EDIT)) {
errorPage('401');
return false;
}
$_REQUEST->setType('add', 'string');
$_REQUEST->setType('edit', 'numeric');
$_REQUEST->setType('del', 'numeric');
$_REQUEST->setType('module', 'string');
$_REQUEST->setType('type', 'string');
$_REQUEST->setType('size', 'string');
$_REQUEST->setType('content', 'string');
$_REQUEST->setType('row', 'numeric');
$_REQUEST->setType('place', 'numeric');
//FIXME: Tillsvidare: Id på sidan som editeras
$pID = 8;
if ($_REQUEST['add']) {
$newModule = $Controller->newObj('PageModule');
$newModule->addData($pID, $_REQUEST['add']);
} elseif ($_REQUEST['edit']) {
$module = $Controller->{$_REQUEST['edit']};
if ($_REQUEST['module']) {
$module->module = $_REQUEST['module'];
} elseif ($_REQUEST['size']) {
$module->size = $_REQUEST['size'];
} elseif ($_REQUEST['type']) {
$module->type = $_REQUEST['type'];
} elseif ($_REQUEST['row'] !== false && $_REQUEST['place'] !== false) {
$module->move($_REQUEST['row'], $_REQUEST['place']);
} elseif ($_REQUEST['content']) {
$module->content = $_REQUEST['content'];
}
} elseif ($_REQUEST['del']) {
$Controller->{$_REQUEST['del']}->delete();
}
/* Get numbers of rows on page*/
$rowNum = $DB->pagelayout->getCell(array('pid' => $pID), "MAX(ROW)");
$pagecontent = false;
/* Get modules from each row */
for ($row = 0; $row <= $rowNum; $row++) {
$moduleIDs = $DB->pagelayout->asList(array('pid' => $pID, 'row' => $row), 'id', false, false, 'place');
$rowContent = array();
foreach ($moduleIDs as $mID) {
$moduleObj = $Controller->{$mID};
$rowContent[] = $moduleObj;
}
$pagecontent[$row] = $rowContent;
}
JS::loadjQuery();
JS::lib('pagelayoutedit');
$this->header = __('Page Layout');
$this->setContent('main', '<h1>Page Layout</h1>' . $this->displayEditor($pagecontent));
$Templates->admin->render();
}
示例3: run
function run()
{
global $Templates;
if (!$this->mayI(READ)) {
errorPage(401);
}
$this->saveChanges();
$this->schematicEditor();
$Templates->admin->render();
}
示例4: start
function start()
{
global $conn;
$servername = "173.194.81.188";
$user = "joshua";
$pass = "impact!!";
$dbname = "BikeShare";
$conn = new mysqli($servername, $user, $pass, $dbname);
if ($conn->connect_error) {
$usernameErr = "Connection failed: " . $conn->connect_error;
errorPage();
exit;
}
}
示例5: mapController
protected function mapController()
{
if ($this->match !== false) {
$target = $this->match['target'];
$params = $this->match['params'];
$name = $this->match['name'];
$this->middleware = isset($target['middleware']) ? str_replace('/', '', $target['middleware']) : (isset($params['middleware']) ? str_replace('/', '', ucfirst($params['middleware'] . 'Middleware')) : null);
$this->controller = isset($target['controller']) ? str_replace('/', '', $target['controller']) : (isset($params['controller']) ? str_replace('/', '', ucfirst($params['controller'])) . 'Controller' : null);
$this->action = isset($target['action']) ? str_replace('/', '', $target['action']) : (isset($params['action']) ? str_replace('/', '', $params['action']) : 'index');
} else {
errorPage();
}
return $this;
}
示例6: run
/**
* In this function, most actions of the module are carried out and the page generation is started, distibuted and rendered.
* @return void
* @see solidbase/lib/Page#run()
*/
function run()
{
global $Templates, $USER, $CONFIG, $Controller, $DB;
if (!$this->may($USER, READ | EDIT)) {
errorPage('401');
return false;
}
if ($this->saveChanges()) {
redirect(array('id' => $this->that->ID));
}
global $Templates;
$this->setContent('header', __('Editing') . ': <i>' . $this->that . '</i>');
$this->setContent('main', new Formsection(__('Members'), $this->memberTab()) . new Formsection('Edit', Form::quick(false, null, $this->editTab())));
$Templates->admin->render();
}
示例7: run
/**
* Contains actions and page view handling
* @return void
* @see solidbase/lib/Page#run()
*/
function run()
{
global $Templates, $USER, $DB, $CONFIG;
/**
* User input types
*/
$_REQUEST->setType('conf', 'string', true);
if (!$this->may($USER, ANYTHING)) {
errorPage(401);
}
if ($this->may($USER, EDIT)) {
if ($_REQUEST['conf']) {
$r = $DB->config->get(null, null, null, 'section,property');
while ($c = Database::fetchAssoc($r)) {
$val = @$_REQUEST['conf'][$c['section']][$c['property']];
switch ($c['type']) {
case 'CSV':
$val = @explode(',', $val);
case 'password':
if ($c['type'] == 'password' && $val == '********') {
continue 2;
}
case 'select':
case 'set':
case 'text':
if ($val === false) {
continue;
}
$CONFIG->{$c['section']}->{$c['property']} = $val;
break;
case 'check':
$CONFIG->{$c['section']}->{$c['property']} = (int) isset($val);
break;
}
}
Log::write('Configuration changed', 2);
Flash::create(__('The configuration was updated'), 'confirmation');
}
}
$this->setContent('header', 'Edit configuration');
$this->setContent('main', $this->viewAll());
$Templates->admin->render();
}
示例8: run
function run()
{
global $DB, $Templates;
if (!$this->mayI(READ)) {
errorPage(401);
}
$_REQUEST->setType('delsd', 'string');
$_REQUEST->setType('editsd', 'string');
$_POST->setType('sdname', 'string');
$_POST->setType('sdassoc', 'string');
if ($_POST['sdname']) {
if ($_REQUEST['editsd']) {
if ($DB->subdomains->update(array('subdomain' => $_POST['sdname'], 'assoc' => $_POST['sdassoc']), array('subdomain' => $_REQUEST['editsd']))) {
Flash::create(__('Subdomain updated'), 'confirmation');
} else {
Flash::create(__('Subdomain in use'), 'warning');
}
} else {
if ($DB->subdomains->insert(array('subdomain' => $_POST['sdname'], 'assoc' => $_POST['sdassoc']))) {
Flash::create(__('New subdomain inserted'), 'confirmation');
} else {
Flash::create(__('Subdomain in use'), 'warning');
}
}
} elseif ($_REQUEST['delsd'] && $this->mayI(EDIT)) {
$DB->subdomains->delete(array('subdomain' => $_REQUEST['delsd']));
}
$r = $DB->subdomains->get(false, false, false, 'subdomain');
$tablerows = array();
while (false !== ($subdomain = Database::fetchAssoc($r))) {
$tablerows[] = new Tablerow($subdomain['subdomain'], $subdomain['assoc'], icon('small/delete', __('Delete subdomain'), url(array('delsd' => $subdomain['subdomain']), 'id')) . icon('small/pencil', __('Edit subdomain'), url(array('editsd' => $subdomain['subdomain']), 'id')));
}
if ($_REQUEST['editsd']) {
$sd = $DB->subdomains->getRow(array('subdomain' => $_REQUEST['editsd']));
$form = new Form('editSubdomain');
} else {
$sd = false;
$form = new Form('newSubdomain');
}
$this->setContent('main', (!empty($tablerows) ? new Table(new Tableheader(__('Subdomain'), __('Associated with..'), __('Actions')), $tablerows) : '') . $form->set($_REQUEST['editsd'] ? new Hidden('editsd', $_REQUEST['editsd']) : null, new input(__('Subdomain'), 'sdname', @$sd['subdomain']), new input(__('Associate with'), 'sdassoc', @$sd['assoc'], false, __('ID or alias to associate with the subdomain'))));
$Templates->render();
}
示例9: section_playerinfo
function section_playerinfo()
{
$editAny = isFuncAllowed('edit_any_players');
$se = new FormEdit();
$se->trimAll();
$se->stripAll();
if (!$se->checkRequired(array('id', 'link'))) {
return errorPage('missing argument');
}
echo '<BR>';
$query = "select P.id, P.callsign, P.status, P.comment, \n P.logo, T.name as teamname, T.id teamid, T.leader, r.name as level,\n C.flagname, C.name as countryname, C.numcode as country,\n P.state, S.abbrev as stateabbr, P.logobg,\n P.email, P.emailpub, P.aim, P.altnik1, P.altnik2,\n P.ircnik1, P.emailpub, P.utczone, P.zonename, P.icq, P.city,\n P.yim, P.msm, P.jabber, P.md5password, \n unix_timestamp(P.created) as created, \n unix_timestamp(P.last_login) as last_login,\n r.id as role_id\n from (l_player P, bzl_roles r )\n left join l_team T on P.team = T.id\n left join bzl_countries C on P.country = C.numcode\n left join bzl_states S on P.state = S.id\n where P.id = '{$se->id}'\n and r.id = P.role_id \n ";
$se->setDataRow(mysql_fetch_assoc(sqlQuery($query)));
if ($se->f_cancel_x) {
$se->link = "playerinfo";
}
if ($se->link == 'playeradmin') {
// present edit form
// security check ...
if ($se->id != $_SESSION['playerid'] && !$editAny) {
errorPage('You are not authorized to edit this profile.');
section_playerinfo_displayPlayer($se);
return;
}
if ($se->f_ok_x) {
section_playerinfo_validate($se);
if (!$se->isError()) {
section_playerinfo_doSubmit($se);
$se->setNextState(FESTATE_INITIAL);
$se->setDataRow(mysql_fetch_assoc(sqlQuery($query)));
section_playerinfo_displayPlayer($se);
return;
}
}
$se->setNextState(FESTATE_SUBMIT);
section_playerinfo_presentEditForm($se);
} else {
section_playerinfo_displayPlayer($se);
}
}
示例10: section_register
function section_register()
{
$se = new FormEdit();
$se->trimAll();
$se->stripAll();
// meno 2007/05/01 ....
if (PRIVATE_LEAGUE != 0) {
return errorPage('Nuh uh, no reg for you');
}
$headers = apache_request_headers();
$fromIP = $_SERVER['REMOTE_ADDR'];
$fd = fopen(PROXY_LOG, 'a');
fwrite($fd, "\n----------------------- " . date('r') . " --------------------\n");
fwrite($fd, "*** FROM IP: {$_SERVER['REMOTE_ADDR']}\n");
foreach ($headers as $n => $v) {
fwrite($fd, "{$n}: {$v}\n");
}
foreach ($headers as $header => $value) {
if (strncmp($fromIP, '172', 3) == 0 || strcasecmp($header, 'X-Forwarded-For') == 0 || strcasecmp($header, 'Via') == 0) {
fwrite($fd, "************************* PROXY DETECT ***********************\n");
fclose($fd);
return errorPage("We're sorry, currently we cannot accept new registrations from AOL users, or users connecting through a proxy.");
}
}
fclose($fd);
if ($_SESSION['callsign']) {
return errorPage('You are already registered with the league system.');
}
if ($se->SUB) {
section_register_validate($se);
if (!$se->isError()) {
section_register_doSubmit($se);
return;
}
}
section_register_presentEditForm($se);
}
示例11: verbose
}
verbose("convolve = " . print_r($convolve, 1));
$upscale = getDefined(array('no-upscale', 'nu'), false, true);
verbose("upscale = {$upscale}");
$postProcessing = getConfig('postprocessing', array('png_filter' => false, 'png_filter_cmd' => '/usr/local/bin/optipng -q', 'png_deflate' => false, 'png_deflate_cmd' => '/usr/local/bin/pngout -q', 'jpeg_optimize' => false, 'jpeg_optimize_cmd' => '/usr/local/bin/jpegtran -copy none -optimize'));
$alias = get('alias', null);
$aliasPath = getConfig('alias_path', null);
$validAliasname = getConfig('valid_aliasname', '#^[a-z0-9A-Z-_]+$#');
$aliasTarget = null;
if ($alias && $aliasPath && $passwordMatch) {
$aliasTarget = $aliasPath . $alias;
$useCache = false;
is_writable($aliasPath) or errorPage("Directory for alias is not writable.", 403);
preg_match($validAliasname, $alias) or errorPage('Filename for alias contains invalid characters. Do not add extension.', 404);
} elseif ($alias) {
errorPage('Alias is not enabled in the config file or password not matching.', 403);
}
verbose("alias = {$alias}");
$cachePath = getConfig('cache_path', __DIR__ . '/../cache/');
$cacheControl = getConfig('cache_control', null);
if ($cacheControl) {
verbose("cacheControl = {$cacheControl}");
$img->addHTTPHeader("Cache-Control", $cacheControl);
}
$dummyDir = getConfig('dummy_dir', $cachePath . "/" . $dummyFilename);
if ($dummyImage === true) {
is_writable($dummyDir) or verbose("dummy dir not writable = {$dummyDir}");
$img->setSaveFolder($dummyDir)->setSource($dummyFilename, $dummyDir)->setOptions(array('newWidth' => $newWidth, 'newHeight' => $newHeight, 'bgColor' => $bgColor))->setJpegQuality($quality)->setPngCompression($compress)->createDummyImage()->generateFilename(null, false)->save(null, null, false);
$srcImage = $img->getTarget();
$imagePath = null;
verbose("src (updated) = {$srcImage}");
示例12: cs_sql_select
$from = 'threads thr INNER JOIN {pre}_board frm ON thr.board_id = frm.board_id ';
$from .= 'INNER JOIN {pre}_users usr ON thr.users_id = usr.users_id ';
$from .= 'INNER JOIN {pre}_categories cat ON frm.categories_id = cat.categories_id';
$select = 'thr.threads_headline AS threads_headline, frm.board_name AS board_name, cat.categories_name AS categories_name, thr.threads_id AS threads_id, frm.board_id AS board_id, frm.board_threads AS board_threads, cat.categories_id AS categories_id, frm.board_access AS board_access, thr.threads_important AS threads_important, thr.threads_close AS threads_close, thr.threads_time AS threads_time, thr.threads_last_time AS threads_last_time, usr.users_nick AS users_nick, usr.users_id AS users_id';
$where = 'threads_id = ' . (int) $thread_id;
$thread_edit = cs_sql_select(__FILE__, $from, $select, $where);
$thread_mods = cs_sql_select(__FILE__, 'boardmods', 'boardmods_modpanel', "users_id = '" . $account['users_id'] . "'", 0, 0, 1);
$thread_headline = $thread_edit['threads_headline'];
$board_id = $thread_edit['board_id'];
require_once 'mods/board/functions.php';
//Sicherheitsabfrage
if ($account['access_board'] < $thread_edit['board_access']) {
return errorPage('modpanel_q', $cs_lang);
}
if ($account['access_board'] < 5 and empty($thread_mods['boardmods_modpanel'])) {
return errorPage('modpanel_q', $cs_lang);
}
//Sicherheitsabfarge Ende
//Daten Abfragen
if (isset($_POST['close'])) {
$thread_cells = array('threads_close');
$thread_save = array($account['users_id']);
$action_lang = $cs_lang['action_close'];
} elseif (!empty($_POST['open'])) {
$thread_cells = array('threads_close');
$thread_save = array(0);
$action_lang = $cs_lang['action_open'];
} elseif (!empty($_POST['addpin'])) {
$thread_cells = array('threads_important');
$thread_save = array(1);
$action_lang = $cs_lang['action_addpin'];
示例13: errorPage
return errorPage('thread_remove', $cs_lang);
}
if ($account['access_board'] >= $cs_thread['board_access']) {
$where_com = "comments_mod = 'board' AND comments_fid = " . (int) $thread_id;
$sum = cs_sql_count(__FILE__, 'comments', $where_com);
if ($account['access_comments'] >= 5 or !empty($thread_mods['boardmods_del'])) {
$allowed = 1;
} elseif ($cs_thread['users_id'] == $account['users_id'] and empty($sum)) {
$allowed = 1;
} else {
return errorPage('thread_remove', $cs_lang);
}
} elseif (!empty($check_sq)) {
$allowed = 1;
} elseif (empty($allowed) or empty($check_pw)) {
return errorPage('thread_remove', $cs_lang);
}
//Sicherheitsabfrage Ende
if (isset($_POST['agree'])) {
for ($run = 0; $run < $cs_boardfiles_loop; $run++) {
$file = $cs_boardfiles[$run]['boardfiles_name'];
$extension = strlen(strrchr($file, "."));
$name = strlen($file);
$ext = substr($file, $name - $extension + 1, $name);
//$file = cs_secure($cs_boardfiles[$run]['boardfiles_name']);
//echo 'uploads/board/files/' . $cs_boardfiles[$run]['boardfiles_id'] . '.' . $ext . cs_html_br(1);
cs_unlink('board', $cs_boardfiles[$run]['boardfiles_id'] . '.' . $ext, 'files');
}
cs_sql_delete(__FILE__, 'threads', $thread_id);
$query = "DELETE FROM {pre}_comments WHERE comments_mod='board' AND ";
$query .= "comments_fid=" . (int) $thread_id;
示例14: cs_sql_select
$where = "thr.threads_id = '" . $tid . "'";
$cs_thread = cs_sql_select(__FILE__, $from, $select, $where, 0, 0, 1);
//Sicherheitsabfrage Beginn
if (!empty($cs_thread['board_pwd'])) {
$where = 'users_id = ' . (int) $account['users_id'] . ' AND board_id = ' . (int) $cs_thread['board_id'];
$check_pw = cs_sql_count(__FILE__, 'boardpws', $where);
}
if (!empty($cs_thread['squads_id']) and $account['access_board'] < $cs_thread['board_access']) {
$sq_where = "users_id = " . (int) $account['users_id'] . " AND squads_id = " . (int) $cs_thread['squads_id'];
$check_sq = cs_sql_count(__FILE__, 'members', $sq_where);
}
if (empty($tid) || count($cs_thread) == 0) {
return errorPage('report', $cs_lang);
}
if ($account['access_board'] < $cs_thread['board_access'] and empty($check_sq) or empty($check_pw)) {
return errorPage('report', $cs_lang);
}
$report = isset($_POST['report']) ? $_POST['report'] : '';
if (isset($_POST['submit'])) {
$error = 0;
$errormsg = '';
if (empty($report)) {
$error++;
$errormsg .= $cs_lang['no_text'] . cs_html_br(1);
}
$exists = cs_sql_count(__FILE__, 'boardreport', "threads_id = " . (int) $tid . " AND comments_id = " . (int) $cid);
if (!empty($exists)) {
$error++;
$errormsg .= $cs_lang['report_exists'] . cs_html_br(1);
}
}
示例15: clockonandoff
function clockonandoff() {
include("table_names.inc");
//import global vars
global $contextUser, $year, $month, $day, $task_id, $proj_id, $Location;
global $destination, $clock_on_time_hour, $clock_off_time_hour,
$clock_on_time_min, $clock_off_time_min, $clockonoff;
global $log_message, $log_message_presented;
global $clock_on_radio, $clock_off_radio, $fromPopupWindow;
if ($clock_on_radio == "now" && $clock_off_radio == "now")
errorPage("You cannot clock on and off at with the same clock-on and clock-off time.", $fromPopupWindow);
//get the dates
if ($clock_on_radio == "now") {
$clock_on_time_hour = date("H");
$clock_on_time_min = date("i");
}
if ($clock_off_radio == "now") {
$clock_off_time_hour = date("H");
$clock_off_time_min = date("i");
}
//make sure we're not clocking on after clocking off
if (($clock_on_time_hour == $clock_off_time_hour) && ($clock_on_time_min > $clock_off_time_min))
errorPage("You cannot have your clock on time ($clock_on_time_hour:$clock_on_time_min) ".
"later than your clock off time ($clock_off_time_hour:$clock_off_time_min)", $fromPopupWindow);
else if ($clock_on_time_hour > $clock_off_time_hour)
errorPage("You cannot have your clock on time ($clock_on_time_hour:$clock_on_time_min) ".
"later than your clock off time ($clock_off_time_hour:$clock_off_time_min)", $fromPopupWindow);
else if (($clock_on_time_hour == $clock_off_time_hour) && ($clock_on_time_min == $clock_off_time_min))
errorPage("You cannot clock on and off with the same clock on and clock off time. on_hour=$clock_on_time_hour on_min=$clock_on_time_min off_hour=$clock_off_time_hour off_min=$clock_off_time_min", $fromPopupWindow);
if ($log_message_presented == false)
getLogMessage();
$log_message = addslashes($log_message);
$queryString = "INSERT INTO $TIMES_TABLE (uid, start_time, end_time, proj_id, task_id, log_message) ".
"VALUES ('$contextUser','$year-$month-$day $clock_on_time_hour:$clock_on_time_min:00', ".
"'$year-$month-$day $clock_off_time_hour:$clock_off_time_min:00', ".
"$proj_id, $task_id, '$log_message')";
list($qh,$num) = dbQuery($queryString);
Header("Location: $Location");
exit;
}