Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Q
question2answer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
outils
question2answer
Commits
ac597698
Commit
ac597698
authored
Jan 11, 2017
by
Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Coding style (qa-page.php, app/page.php)
parent
d6aa8810
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
33 deletions
+28
-33
page.php
qa-include/app/page.php
+0
-0
qa-page.php
qa-include/qa-page.php
+28
-33
No files found.
qa-include/app/page.php
View file @
ac597698
This diff is collapsed.
Click to expand it.
qa-include/qa-page.php
View file @
ac597698
...
...
@@ -4,7 +4,7 @@
http://www.question2answer.org/
File: qa-include/qa-page.php
Description:
Routing and utility functions
for page requests
Description:
Initialization
for page requests
This program is free software; you can redistribute it and/or
...
...
@@ -20,51 +20,46 @@
More about this license: http://www.question2answer.org/license.php
*/
if
(
!
defined
(
'QA_VERSION'
))
{
// don't allow this page to be requested directly from browser
header
(
'Location: ../'
);
exit
;
}
if
(
!
defined
(
'QA_VERSION'
))
{
// don't allow this page to be requested directly from browser
header
(
'Location: ../'
);
exit
;
}
require_once
QA_INCLUDE_DIR
.
'app/page.php'
;
require_once
QA_INCLUDE_DIR
.
'app/page.php'
;
// Below are the steps that actually execute for this file - all the above are function definitions
global
$qa_usage
;
global
$qa_usage
;
qa_report_process_stage
(
'init_page'
);
qa_db_connect
(
'qa_page_db_fail_handler'
);
qa_report_process_stage
(
'init_page'
);
qa_db_connect
(
'qa_page_db_fail_handler'
);
qa_page_queue_pending
();
qa_load_state
();
qa_check_login_modules
();
qa_page_queue_pending
();
qa_load_state
();
qa_check_login_modules
();
if
(
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
mark
(
'setup'
);
qa_check_page_clicks
();
if
(
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
mark
(
'setup'
);
$qa_content
=
qa_get_request_content
();
qa_check_page_clicks
();
if
(
is_array
(
$qa_content
))
{
if
(
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
mark
(
'view'
);
$qa_content
=
qa_get_request_content
();
qa_output_content
(
$qa_content
);
if
(
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
mark
(
'theme'
);
if
(
is_array
(
$qa_content
))
{
if
(
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
mark
(
'view'
);
if
(
qa_do_content_stats
(
$qa_content
)
&&
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
mark
(
'stats'
);
qa_output_content
(
$qa_content
);
if
(
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
output
();
}
if
(
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
mark
(
'theme'
);
qa_db_disconnect
();
if
(
qa_do_content_stats
(
$qa_content
)
&&
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
mark
(
'stats'
);
if
(
QA_DEBUG_PERFORMANCE
)
$qa_usage
->
output
();
}
/*
Omit PHP closing tag to help avoid accidental output
*/
qa_db_disconnect
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment