0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-view_blog.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-view_blog.php,v 1.39.2.12 2006/11/02 14:35:45 sylvieg 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_categories == 'y') { global $categlib; if (!is_object($categlib)) { include_once('lib/categories/categlib.php'); } } if ($feature_blogs != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_blogs"); $smarty->display("error.tpl"); die; } if (!isset($_REQUEST["blogId"])) { $smarty->assign('msg', tra("No blog indicated")); $smarty->display("error.tpl"); die; } $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'); } } } } elseif ($tiki_p_admin != 'y' && $feature_categories == 'y') { $perms_array = $categlib->get_object_categories_perms($user, 'blog', $_REQUEST['blogId']); if ($perms_array) { $is_categorized = TRUE; foreach ($perms_array as $perm => $value) { $$perm = $value; } } else { $is_categorized = FALSE; } if ($is_categorized && isset($tiki_p_view_categories) && $tiki_p_view_categories != 'y') { if (!isset($user)){ $smarty->assign('msg',$smarty->fetch('modules/mod-login_box.tpl')); $smarty->assign('errortitle',tra("Please login")); } else { $smarty->assign('msg',tra("Permission denied you cannot view this page")); } $smarty->display("error.tpl"); die; } } 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; } $bloglib->add_blog_hit($_REQUEST["blogId"]); $smarty->assign('blogId', $_REQUEST["blogId"]); $smarty->assign('title', $blog_data["title"]); $smarty->assign('heading', $blog_data["heading"]); $smarty->assign('use_title', $blog_data["use_title"]); $smarty->assign('use_find', $blog_data["use_find"]); $smarty->assign('allow_comments', $blog_data["allow_comments"]); $smarty->assign('show_avatar',$blog_data["show_avatar"]); $smarty->assign('description', $blog_data["description"]); $smarty->assign('created', $blog_data["created"]); $smarty->assign('lastModif', $blog_data["lastModif"]); $smarty->assign('posts', $blog_data["posts"]); $smarty->assign('public', $blog_data["public"]); $smarty->assign('hits', $blog_data["hits"]); $smarty->assign('creator', $blog_data["user"]); $smarty->assign('activity', $blog_data["activity"]); if (isset($_REQUEST["remove"])) { $data = $bloglib->get_post($_REQUEST["remove"]); if ($ownsblog == 'n') { if (!$user || $data["user"] != $user) { if ($tiki_p_blog_admin != 'y') { $smarty->assign('msg', tra("Permission denied you cannot remove the post")); $smarty->display("error.tpl"); die; } } } $area = 'delpost'; if ($feature_ticketlib2 != 'y' or (isset($_POST['daconfirm']) and isset($_SESSION["ticket_$area"]))) { key_check($area); $bloglib->remove_post($_REQUEST["remove"]); } else { key_get($area); } } // This script can receive the thresold // for the information as the number of // days to get in the log 1,3,4,etc // it will default to 1 recovering information for today if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'created_desc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } $smarty->assign_by_ref('sort_mode', $sort_mode); // If offset is set use it if not then use offset =0 // use the maxRecords php variable to set the limit // if sortMode is not set then use lastModif_desc if (!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset', $offset); $now = date("U"); if (isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } $smarty->assign('find', $find); // Get a list of last changes to the blog database $listpages = $bloglib->list_blog_posts($_REQUEST["blogId"], $offset, $blog_data["maxPosts"], $sort_mode, $find, $now); $temp_max = count($listpages["data"]); for ($i = 0; $i < $temp_max; $i++) { $listpages["data"][$i]["parsed_data"] =preg_replace("/&#([0-9]+);/me", "chr('\\1')", strtr($tikilib->parse_data($bloglib->get_page($listpages["data"][$i]["data"], 1)), array_flip(get_html_translation_table(HTML_ENTITIES)))) ; //print(htmlspecialchars($listpages["data"][$i]["parsed_data"])); } $maxRecords = $blog_data["maxPosts"]; $cant_pages = ceil($listpages["cant"] / $maxRecords); $smarty->assign_by_ref('cant_pages', $cant_pages); $smarty->assign('actual_page', 1 + ($offset / $maxRecords)); $smarty->assign('maxRecords', $maxRecords); if ($listpages["cant"] > ($offset + $maxRecords)) { $smarty->assign('next_offset', $offset + $maxRecords); } else { $smarty->assign('next_offset', -1); } // If offset is > 0 then prev_offset if ($offset > 0) { $smarty->assign('prev_offset', $offset - $maxRecords); } else { $smarty->assign('prev_offset', -1); } // If there're more records then assign next_offset $smarty->assign_by_ref('listpages', $listpages["data"]); //print_r($listpages["data"]); if ($feature_blog_comments == 'y') { $comments_per_page = $blog_comments_per_page; $comments_default_ordering = $blog_comments_default_ordering; $comments_vars = array('blogId'); $comments_prefix_var = 'blog:'; $comments_object_var = 'blogId'; 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'); } if ($user && $tiki_p_notepad == 'y' && $feature_notepad == 'y' && isset($_REQUEST['savenotepad'])) { check_ticket('blog'); $post_info = $bloglib->get_post($_REQUEST['savenotepad']); $tikilib->replace_note($user, 0, $post_info['title'] ? $post_info['title'] : date("d/m/Y [h:i]", $post_info['created']), $post_info['data']); } if ($feature_user_watches == 'y') { if ($user && isset($_REQUEST['watch_event'])) { check_ticket('blog'); if ($_REQUEST['watch_action'] == 'add') { $tikilib->add_user_watch($user, $_REQUEST['watch_event'], $_REQUEST['watch_object'], 'blog', $blog_data['title'], "tiki-view_blog.php?blogId=" . $_REQUEST['blogId']); } else { $tikilib->remove_user_watch($user, $_REQUEST['watch_event'], $_REQUEST['watch_object']); } } $smarty->assign('user_watching_blog', 'n'); if ($user && $watch = $tikilib->get_user_event_watches($user, 'blog_post', $_REQUEST['blogId'])) { $smarty->assign('user_watching_blog', 'y'); } } if ($feature_mobile == 'y' && isset($_REQUEST['mode']) && $_REQUEST['mode'] == 'mobile') { include_once ("lib/hawhaw/hawtikilib.php"); HAWTIKI_view_blog($listpages, $blog_data); } ask_ticket('blog'); // Display the template $smarty->assign('mid', 'tiki-view_blog.tpl'); $smarty->display("tiki.tpl"); ?>