0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-print_blog_post.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-print_blog_post.php,v 1.8.2.3 2006/09/03 16:32:29 ohertel Exp $ // Copyright (c) 2002-2005, 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. // Initialization require_once ('tiki-setup.php'); include_once ('lib/blogs/bloglib.php'); if ($feature_blogs != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_blogs"); $smarty->display("error.tpl"); die; } if (!isset($_REQUEST["postId"])) { $smarty->assign('msg', tra("No post indicated")); $smarty->display("error.tpl"); die; } $postId = $_REQUEST["postId"]; $post_info = $bloglib->get_post($_REQUEST["postId"]); $smarty->assign('post_info', $post_info); $smarty->assign('postId', $_REQUEST["postId"]); $_REQUEST["blogId"] = $post_info["blogId"]; $blog_data = $bloglib->get_blog($_REQUEST['blogId']); $smarty->assign('blog_data', $blog_data); $smarty->assign('blogId', $_REQUEST["blogId"]); //Build absolute URI for this $parts = parse_url($_SERVER['REQUEST_URI']); $uri = $tikilib->httpPrefix(). $parts['path'] . '?blogId=' . $_REQUEST['blogId'] . '&postId=' . $_REQUEST['postId']; $uri2 = $tikilib->httpPrefix(). $parts['path'] . '/' . $_REQUEST['blogId'] . '/' . $_REQUEST['postId']; $smarty->assign('uri', $uri); $smarty->assign('uri2', $uri2); if (!isset($_REQUEST['offset'])) $_REQUEST['offset'] = 0; if (!isset($_REQUEST['sort_mode'])) $_REQUEST['sort_mode'] = 'created_desc'; if (!isset($_REQUEST['find'])) $_REQUEST['find'] = ''; $smarty->assign('offset', $_REQUEST["offset"]); $smarty->assign('sort_mode', $_REQUEST["sort_mode"]); $smarty->assign('find', $_REQUEST["find"]); $offset = $_REQUEST["offset"]; $sort_mode = $_REQUEST["sort_mode"]; $find = $_REQUEST["find"]; $parsed_data = $tikilib->parse_data($post_info["data"]); $smarty->assign('parsed_data', $parsed_data); $smarty->assign('individual', 'n'); if ($userlib->object_has_one_permission($_REQUEST["blogId"], 'blog')) { $smarty->assign('individual', 'y'); if ($tiki_p_admin != 'y') { // Now get all the permissions that are set for this type of permissions 'image gallery' $perms = $userlib->get_permissions(0, -1, 'permName_desc', '', 'blogs'); foreach ($perms["data"] as $perm) { $permName = $perm["permName"]; if ($userlib->object_has_permission($user, $_REQUEST["blogId"], 'blog', $permName)) { $$permName = 'y'; $smarty->assign("$permName", 'y'); } else { $$permName = 'n'; $smarty->assign("$permName", 'n'); } } } } if ($tiki_p_blog_admin == 'y') { $tiki_p_create_blogs = 'y'; $smarty->assign('tiki_p_create_blogs', 'y'); $tiki_p_blog_post = 'y'; $smarty->assign('tiki_p_blog_post', 'y'); $tiki_p_read_blog = 'y'; $smarty->assign('tiki_p_read_blog', 'y'); } if ($tiki_p_read_blog != 'y') { $smarty->assign('msg', tra("Permission denied you can not view this section")); $smarty->display("error.tpl"); die; } $blog_data = $tikilib->get_blog($_REQUEST["blogId"]); $ownsblog = 'n'; if ($user && $user == $blog_data["user"]) { $ownsblog = 'y'; } $smarty->assign('ownsblog', $ownsblog); if (!$blog_data) { $smarty->assign('msg', tra("Blog not found")); $smarty->display("error.tpl"); die; } if ($feature_blogposts_comments == 'y') { $comments_per_page = $blog_comments_per_page; $comments_default_ordering = $blog_comments_default_ordering; $comments_vars = array( 'postId', 'offset', 'find', 'sort_mode' ); $comments_prefix_var = 'post:'; $comments_object_var = 'postId'; include_once ("comments.php"); } $section = 'blogs'; include_once ('tiki-section_options.php'); if ($feature_theme_control == 'y') { $cat_type = 'blog'; $cat_objid = $_REQUEST['blogId']; include ('tiki-tc.php'); } ask_ticket('print-blog-post'); // disallow robots to index page: $smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW'); // Display the template $smarty->display("tiki-print_blog_post.tpl"); ?>