Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
webservice MDL-20803 little hack in order to not trigger environment.…
…php in the header when $USER is set but the user is not logged
  • Loading branch information
mouneyrac committed Dec 13, 2009
1 parent d4c6ef7 commit b5e4c8d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions webservice/wsdoc.php
Expand Up @@ -226,15 +226,21 @@ protected function authenticate_user() {
* Generate and display the documentation
*/
protected function display_documentation_html() {
global $PAGE, $OUTPUT, $SITE;
global $PAGE, $OUTPUT, $SITE, $USER;

$PAGE->set_url('/webservice/wsdoc');
$PAGE->set_docs_path('');
$PAGE->set_title($SITE->fullname." ".get_string('wsdocumentation', 'webservice'));
$PAGE->set_heading($SITE->fullname." ".get_string('wsdocumentation', 'webservice'));
$PAGE->set_generaltype('popup');

//unlog temporarly the user in order to not trigger environment.php called by Moodle header.
//environment.php checkes the sessionkey that we don't have here.
//emvrionment.php is just used to detect the flash player. We don't need
//to check the flash player version.
$userid = $USER->id;
$USER->id = null;
echo $OUTPUT->header();
$USER->id = $userid;
$renderer = $PAGE->theme->get_renderer('core_wsdoc',$OUTPUT);
echo $renderer->documentation_html($this->functions, $this->username);
echo $OUTPUT->footer();
Expand Down

0 comments on commit b5e4c8d

Please sign in to comment.