verifyPackage( 'articles' ); // initiate feedback array $gBitSmarty->assign_by_ref( 'feedback', $feedback = array() ); include_once('lookup_article_inc.php'); if( $gBitUser->hasPermission('bit_p_admin_articles' ) || $gBitUser->hasPermission( 'bit_p_edit_article' ) ) { $isOwner = TRUE; } elseif( !empty($gContent->mInfo['user_id'] ) && $gContent->mInfo['user_id'] == $gBitUser->mUserId ) { $isOwner = TRUE; } elseif( !$gContent->mArticleId && $gBitUser->hasPermission( 'bit_p_submit_article' ) ) { $isOwner = TRUE; } // Now check permissions to access this page if( !$isOwner ) { $gBitSmarty->assign( 'msg', tra( "Permission denied you cannot edit this article" ) ); $gBitSystem->display( "error.tpl" ); die; } // content templates if( !empty( $_REQUEST["template_id"] ) && $_REQUEST["template_id"] > 0 ) { $template_data = $tikilib->get_template( $_REQUEST["template_id"] ); $_REQUEST["preview"] = 1; $_REQUEST["body"] = $template_data["content"].$_REQUEST["data"]; } // if we want to remove a custom image, just nuke all custom image settings at once if( !empty( $_REQUEST['remove_image'] ) ) { $_REQUEST['image_attachment_id'] = NULL; $gContent->expungeImage( $gContent->mArticleId, !empty( $_REQUEST['preview_image_path'] ) ? $_REQUEST['preview_image_path'] : NULL ); // set the preview mode to maintain all settings $_REQUEST['preview'] = 1; } // If we are in preview mode then preview it! if( !empty( $_REQUEST['preview'] ) ) { $article = $gContent->preparePreview( $_REQUEST ); $gBitSmarty->assign( 'preview', TRUE ); $gContent->invokeServices( 'content_preview_function' ); $gBitSmarty->assign_by_ref( 'article', $article ); } else { $gContent->invokeServices( 'content_edit_function' ); if( empty( $gContent->mInfo['author_name'] ) ) { $gContent->mInfo['author_name'] = $gBitUser->getDisplayName(); } $gBitSmarty->assign_by_ref('article', $gContent->mInfo); } if( !empty( $_REQUEST["save"] ) ) { if( empty( $_REQUEST["rating"] ) ) $_REQUEST['rating'] = 0; if( empty( $_REQUEST['topic_id'] ) ) $_REQUEST['topic_id'] = 0; if( $gContent->store( $_REQUEST ) ) { if( $gContent->mInfo['status_id'] == ARTICLE_STATUS_PENDING ) { header ( "location: " . ARTICLES_PKG_URL. "index.php?feedback=".urlencode( tra( 'Your article has been submitted and is awaiting approval.' ) ) ); } else { header ( "location: " . ARTICLES_PKG_URL. "index.php" ); } } } // Get a topic list $topics = BitArticleTopic::getTopicList( array( 'active' => TRUE ) ); $gBitSmarty->assign_by_ref( 'topics', $topics ); // get list of valid types $types = BitArticleType::getTypeList(); $gBitSmarty->assign_by_ref( 'types', $types ); /*if ( $gBitSystem->isFeatureActive( 'feature_cms_templates' ) && $gBitUser->hasPermission( 'bit_p_use_content_templates ) ) { $templates = $tikilib->list_templates( 'cms', 0, -1, 'name_asc', '' ); }*/ $gBitSmarty->assign_by_ref( 'templates', $templates["data"] ); // WYSIWYG and Quicktag variable $gBitSmarty->assign( 'textarea_id', 'editarticle' ); if ($gBitSystem->isPackageActive( 'quicktags' )) { include_once( QUICKTAGS_PKG_PATH . 'quicktags_inc.php' ); } // Display the Index Template $gBitSmarty->assign( 'show_page_bar', 'n' ); // load the ajax library for this page $gBitSmarty->assign( 'loadAjax', TRUE ); $gBitSystem->display( 'bitpackage:articles/edit_article.tpl', tra( "Articles" ) ); ?>