1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_blogs/post.php,v 1.52 2007/12/09 06:08:52 wjames5 Exp $
* @package blogs
* @subpackage functions
*/
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
/**
* required setup
*/
require_once( '../bit_setup_inc.php' );
$gBitSystem->verifyPackage( 'blogs' );
require_once( BLOGS_PKG_PATH.'lookup_post_inc.php' );
require_once( BLOGS_PKG_PATH.'BitBlog.php');
$gBlog = new BitBlog();
//must be owner or admin to edit an existing post
if( $gContent->isValid() ) {
$gContent->verifyEditPermission();
} else {
$gBitSystem->verifyPermission( 'p_blogs_post' );
}
// Editing page needs general ticket verification
$gBitUser->verifyTicket();
// nuke post if requested
if( !empty( $_REQUEST['action'] ) ) {
if( $_REQUEST['action'] == 'remove' && $gContent->isValid() ) {
if( isset( $_REQUEST["confirm"] ) ) {
$redirect = !empty( $gContent->mInfo['blogs'] ) ? BLOGS_PKG_URL.'view.php?content_id='.key( $gContent->mInfo['blogs'] ) : BLOGS_PKG_URL;
if( $gContent->expunge() ) {
bit_redirect( $redirect );
} else {
$feedback['error'] = $gContent->mErrors;
}
}
$gBitSystem->setBrowserTitle( 'Confirm removal of '.$gContent->getTitle() );
$formHash['remove'] = TRUE;
$formHash['action'] = 'remove';
$formHash['post_id'] = $_REQUEST['post_id'];
$msgHash = array(
'label' => 'Remove Blog Post',
'confirm_item' => $gContent->getTitle(),
'warning' => 'This will remove the above blog post. This cannot be undone.',
);
$gBitSystem->confirmDialog( $formHash, $msgHash );
}
}
if (isset($_REQUEST['remove_image'])) {
$gContent->expungeAttachment( $_REQUEST['remove_image'] );
}
if( isset( $_REQUEST['format_guid'] ) && !isset( $gContent->mInfo['format_guid'] ) ) {
$formInfo['format_guid'] = $gContent->mInfo['format_guid'] = $_REQUEST['format_guid'];
}
if (isset($_REQUEST["preview"])) {
$post = $gContent->preparePreview( $_REQUEST );
$gBitSmarty->assign( 'preview', TRUE );
$gContent->invokeServices( 'content_preview_function' );
$gBitSmarty->assign_by_ref( 'post_info', $post );
/* minor hack to accomodate the view_blog_post.tpl
* this can eventually be removed with a change to the tpl to use post_info['parsed_data']
* but requires clean up in a few places.
*/
$gBitSmarty->assign('parsed_data', $post['parsed_data']);
} elseif (isset($_REQUEST['save_post']) || isset($_REQUEST['save_post_exit'])) {
if( $gContent->store( $_REQUEST ) ) {
$postid = $gContent->mPostId;
$gBitSmarty->assign('post_id', $gContent->mPostId);
if (isset($_REQUEST['save_post_exit'])) {
header ("location: ".BLOGS_PKG_URL."view_post.php?post_id=$postid");
die;
}
$parsed_data = $gContent->parseData( $gContent->getField('data'), ($gContent->getField('format_guid') ? $gContent->getField('format_guid') : 'tikiwiki') );
$gBitSmarty->assign( 'title', $gContent->getTitle('title') );
$gBitSmarty->assign( 'trackbacks_to', explode(',', $gContent->getField('trackbacks_to')) );
$gBitSmarty->assign( 'parsed_data', $parsed_data );
}
} else {
$gContent->invokeServices( 'content_edit_function' );
$gBitSmarty->assign_by_ref('post_info', $gContent->mInfo);
}
// Get List of available blogs
$listHash = array();
$listHash['sort_mode'] = 'title_desc';
if( !$gBitUser->hasPermission( 'p_blogs_admin' )) {
$listHash['user_id'] = $gBitUser->mUserId;
$listHash['content_perm_name'] = 'p_blogs_post';
}
$blogs = $gBlog->getList( $listHash );
$availableBlogs = array();
foreach( array_keys( $blogs ) as $blogContentId ) {
$availableBlogs[$blogContentId] = $blogs[$blogContentId]['title'];
}
$gBitSmarty->assign( 'availableBlogs', $availableBlogs );
$gBitSmarty->assign_by_ref('blogs', $blogs['data']);
if (isset($_REQUEST['blog_content_id'])) {
$gBitSmarty->assign('blog_content_id', $_REQUEST['blog_content_id'] );
}
$gBitSmarty->assign_by_ref( 'errors', $gContent->mErrors );
$gBitSmarty->assign( 'textarea_label', 'Post Content' );
// tweak title displayed for better usuability in browser history
$gBitSystem->display( 'bitpackage:blogs/blog_post.tpl', $gContent->isValid() ? tra( "Edit Blog Post" ).": ".$gContent->getTitle() : tra( "Create Blog Post" ) );
?>
|