2015-04-11 17:30:01 +00:00
< ? php
register_module ([
" name " => " Page viewer " ,
2015-05-27 09:32:13 +00:00
" version " => " 0.7 " ,
2015-04-11 17:30:01 +00:00
" author " => " Starbeamrainbowlabs " ,
" description " => " Allows you to view pages. You should include this one. " ,
" id " => " page-view " ,
" code " => function () {
add_action ( " view " , function () {
2015-05-27 09:32:13 +00:00
global $pageindex , $settings , $page , $parse_page_source ;
2015-04-11 17:30:01 +00:00
//check to make sure that the page exists
if ( ! isset ( $pageindex -> $page ))
{
// todo make this intelligent so we only redirect if the user is acutally able to create the page
if ( $settings -> editing )
{
//editing is enabled, redirect to the editing page
http_response_code ( 307 ); //temporary redirect
header ( " location: index.php?action=edit&newpage=yes&page= " . rawurlencode ( $page ));
exit ();
}
else
{
//editing is disabled, show an error message
http_response_code ( 404 );
2015-05-24 20:00:30 +00:00
exit ( page_renderer :: render_main ( " $page - 404 - $settings->sitename " , " <p> $page does not exist.</p><p>Since editing is currently disabled on this wiki, you may not create this page. If you feel that this page should exist, try contacting this wiki's Administrator.</p> " ));
2015-04-11 17:30:01 +00:00
}
}
$title = " $page - $settings->sitename " ;
$content = " <h1> $page </h1> " ;
2015-05-27 09:32:13 +00:00
$parsing_start = microtime ( true );
2015-04-11 17:30:01 +00:00
2015-05-27 09:32:13 +00:00
$content .= $parse_page_source ( file_get_contents ( " $page .md " ));
2015-04-11 17:30:01 +00:00
2015-05-27 09:32:13 +00:00
$content .= " \n \t \t <!-- Took " . ( microtime ( true ) - $parsing_start ) . " seconds to parse page source --> \n " ;
2015-04-11 17:30:01 +00:00
if ( isset ( $_GET [ " printable " ]) and $_GET [ " printable " ] === " yes " )
2015-05-24 20:05:45 +00:00
exit ( page_renderer :: render_minimal ( $title , $content ));
2015-04-11 17:30:01 +00:00
else
2015-05-24 20:05:45 +00:00
exit ( page_renderer :: render_main ( $title , $content ));
2015-04-11 17:30:01 +00:00
});
}
]);
?>