summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rwxr-xr-x[-rw-r--r--]index.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/index.php b/index.php
index 9cc8fd5..fb29a0c 100644..100755
--- a/index.php
+++ b/index.php
@@ -13,19 +13,19 @@
/**
* required setup
*/
-require_once( '../kernel/includes/setup_inc.php' );
+namespace Bitweaver\Wiki;
+require_once '../kernel/includes/setup_inc.php';
$gBitSystem->verifyPackage( 'wiki' );
-require_once( WIKI_PKG_CLASS_PATH.'BitPage.php' );
if( !empty( $_REQUEST['structure_id'] ) ) {
- include( LIBERTY_PKG_INCLUDE_PATH.'structure_display_inc.php' );
+ include LIBERTY_PKG_INCLUDE_PATH.'structure_display_inc.php';
} else {
- // if no page set
+ // if no page set
if ( !isset( $_REQUEST['page'] ) and !isset( $_REQUEST['page_id'] ) ) {
// if auto create home page disabled just get a list
if( $gBitSystem->isFeatureActive( 'wiki_disable_auto_home' ) ){
- include( WIKI_PKG_PATH.'list_pages.php' );
+ include WIKI_PKG_PATH.'list_pages.php';
die;
}
// auto fetch/create default home page
@@ -35,17 +35,17 @@ if( !empty( $_REQUEST['structure_id'] ) ) {
$gHome = new BitPage();
$wikiHome = $gBitSystem->getConfig( "wiki_home_page", 'HomePage' );
if( !($gHome->pageExists( $wikiHome ) ) ) {
- $homeHash = array(
- 'title' => ( isset( $wikiHome ) ? $wikiHome : 'HomePage' ),
+ $homeHash = [
+ 'title' => $wikiHome ?? 'HomePage',
'creator_user_id' => ROOT_USER_ID,
'modifier_user_id' => ROOT_USER_ID,
- 'edit' => 'Welcome to '.( $gBitSystem->getConfig( 'site_title', 'our site' ) ) );
+ 'edit' => 'Welcome to '.( $gBitSystem->getConfig( 'site_title', 'our site' ) ) ];
$gHome->store( $homeHash );
}
-
- include( WIKI_PKG_INCLUDE_PATH.'lookup_page_inc.php' );
+
+ include WIKI_PKG_INCLUDE_PATH.'lookup_page_inc.php';
if( $gContent->isValid() ) {
$gBitSystem->setCanonicalLink( $gContent->getDisplayUrl() );
}
- include( WIKI_PKG_INCLUDE_PATH.'display_bitpage_inc.php' );
+ include WIKI_PKG_INCLUDE_PATH.'display_bitpage_inc.php';
}