blob: d5753dc6d42fd1889473ac96c654e81103f69236 (
plain)
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
|
<?php
/**
* @version $Header$
* @package blogs
* @subpackage functions
*/
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
/**
* required setup
*/
require_once '../kernel/includes/setup_inc.php';
use Bitweaver\KernelTools;
$gBitSystem->verifyPackage( 'blogs' );
require_once BLOGS_PKG_INCLUDE_PATH.'lookup_blog_inc.php';
$gBitSystem->verifyPermission( 'p_blogs_view' );
$gBitSystem->setBrowserTitle(KernelTools::tra("View All Blogs"));
if( $gContent->isValid() && isset($_REQUEST["remove"])) {
$gBitSystem->setBrowserTitle(KernelTools::tra("Delete Blog"));
// Check if has edit perm of this blog
$gContent->verifyUpdatePermission();
if( !empty( $_REQUEST['cancel'] ) ) {
// user cancelled - just continue on, doing nothing
} elseif( empty( $_REQUEST['confirm'] ) ) {
$formHash['remove'] = $_REQUEST["remove"];
$formHash['blog_id'] = $gContent->mBlogId;
$gBitSystem->confirmDialog( $formHash,
array(
'warning' => KernelTools::tra('Are you sure you want to delete this blog?') . ' ' . $gContent->getTitle(),
'error' => KernelTools::tra('This cannot be undone!'),
)
);
} else {
$gContent->expunge();
}
}
// Get a list of last changes to the Wiki database
$blogsList = $gContent->getList( $_REQUEST );
$gBitSmarty->assign( 'listInfo', $_REQUEST['listInfo'] );
$gBitSmarty->assign( 'blogsList', $blogsList );
if( defined(ROLE_MODEL) ) {
$gBitSmarty->assign( 'role_model', true );
}
// Display the template
$gBitSystem->display( 'bitpackage:blogs/list_blogs.tpl', null, array( 'display_mode' => 'list' ));
|