예제 #1
0
function printPostSummary($post)
{
    echo '<div class="blogpost_info"><h2><a href="/blog/post/' . $post['post_id'] . '">';
    echo $post['post_title'];
    echo '</a></h2><p class="note">Posted on <b>';
    echo date("F jS, Y", strtotime($post['post_time'])) . " at " . date("g:ia", strtotime($post['post_time']));
    echo '</b><br>Tagged in:&nbsp;&nbsp;';
    foreach (getPostTags($post['post_id']) as $tag) {
        echo '<a href="/blog/tag/' . $tag . '">' . $tag . '</a>&nbsp;&nbsp;';
    }
    echo '</p><br></div>';
}
예제 #2
0
<?php 
echo '<div id="sidebar"><br><br>';
echo '<div class="sidebar_content"><h4>Recent Posts</h4><br>';
$x = 0;
foreach (getRecentPosts() as $recentPost) {
    if ($x > 0) {
        echo '<br>';
    }
    echo '<a class="recent_post_title" href="/blog/post/' . $recentPost['post_id'] . '">' . $recentPost['post_title'] . '</a><br>';
    echo '<p class="note recent_post_note">' . date("F jS, Y", strtotime($recentPost['post_time'])) . '<br>';
    foreach (getPostTags($recentPost['post_id']) as $recentPostTag) {
        echo '<a class="recent_post_note" href="/blog/tag/' . $recentPostTag . '">' . $recentPostTag . '</a>&nbsp; ';
    }
    echo '</p>';
    $x++;
}
echo '</div><div class="sidebar_content"><h4>All Posts</h4><br>';
echo '<a class="recent_post_title" href="/blog/all">Click Here</a><br>';
echo '<p class="note recent_post_note">to see a full blog post listing.</p>';
echo '</div><div class="sidebar_content"><h4>Tags</h4><br>';
$sortTags = getTags();
usort($sortTags, "tagSort");
foreach ($sortTags as $tag) {
    echo '<p class="note tag_note"><a class="tag_link" href="/blog/tag/' . $tag['tag_id'] . '">' . $tag['tag_name'] . '</a>';
    echo '&nbsp;(' . getTagCount($tag['tag_id']) . ')</p>' . "\n";
}
echo '</div></div>';
?>

예제 #3
0
        while ($tag = mysql_fetch_array($tags)) {
            echo '<input class="checkbox" type="checkbox" name="tags[]" value="' . $tag['tag_id'] . '">' . $tag['tag_name'] . '<br>';
        }
        ?>

<br>
<input type="submit" value="Post">
</form>
<?php 
    } else {
        if ($resource2 === "edit") {
            echo '<a href="/admin/blog">&lt;&lt;&lt; Back to Blog Management</a><br><br>';
            if (sizeof($uri) > 0) {
                $postID = array_shift($uri);
                $post = getPost($postID);
                $postTags = getPostTags($postID);
                ?>

<form action="/admin/editblogpost" method="post">
<table>
    <tr><td>Title:</td><td><input type="text" name="title" value="<?php 
                echo $post['post_title'];
                ?>
"></td></tr>
    <tr><td>Time Posted:</td><td><input type="text" name="time" value="<?php 
                echo $post['post_time'];
                ?>
"></td></tr>
    <tr><td>Content:</td><td><textarea name="content"><?php 
                echo $post['post_content'];
                ?>
예제 #4
0
 $desc = strip_tags($item);
 # Split string only on space char
 $desc = short_str($desc, 300, false);
 # Gravatar
 if ($blog_settings->get('planet_avatar')) {
     $avatar_url = getUserIcon($post_list->user_email);
     //			$avatar_email = strtolower($post_list->user_email);
     //			$avatar_url = "http://cdn.libravatar.org/avatar/".md5($avatar_email)."?d=".urlencode(BP_PLANET_URL."/themes/".$blog_settings->get('planet_theme')."/images/gravatar.png")."&s=40";
     $avatar = '<img src="' . $avatar_url . '" alt="' . sprintf(T_('Gravatar of %s'), $post_list->user_fullname) . '" class="gravatar" />';
 }
 if ($blog_settings->get('planet_avatar')) {
     $item = $item . "\n<p>" . $avatar;
 }
 $item = $item . "<br/>" . $links . "</p>";
 # Similar posts
 $post_tags = getPostTags($post_list->post_id);
 if ($blog_settings->get("show_similar_posts") && !empty($post_tags)) {
     $sql_sim = getSimilarPosts_SQL($post_list->post_id, $post_tags);
     $rsimilar = $core->con->select($sql_sim);
     if ($rsimilar->count() > 0) {
         $sim_html = '<div class="similar-block"><h3>' . T_('Similar posts') . '</h3><ul>';
         while ($rsimilar->fetch()) {
             $post_permalink = $rsimilar->permalink;
             if ($blog_settings->get('internal_links')) {
                 $post_permalink = BP_PLANET_URL . "/index.php?post_id=" . $rsimilar->post_id;
             }
             $sim_html .= "<li>";
             $sim_html .= $rsimilar->user_fullname . " : ";
             $sim_html .= '<a href="' . urldecode($post_permalink) . '">' . $rsimilar->post_title;
             $sim_html .= "</a> (" . mysqldatetime_to_date("d/m/Y", $rsimilar->post_pubdate) . ")";
             $sim_html .= "</li>";
예제 #5
0
function showSinglePost($rs, $tpl, $search_value, $multiview = true, $strip_tags = false)
{
    global $blog_settings, $core, $user_settings;
    $avatar = $blog_settings->get('planet_avatar');
    $post_permalink = $rs->f('permalink');
    if ($blog_settings->get('internal_links')) {
        $post_permalink = BP_PLANET_URL . "/index.php?post_id=" . $rs->f('post_id') . "&go=external";
    }
    $title = html_entity_decode($rs->f('title'), ENT_QUOTES, 'UTF-8');
    $content = html_entity_decode($rs->f('content'), ENT_QUOTES, 'UTF-8');
    $short_content = html_entity_decode($rs->f('short_content'), ENT_QUOTES, 'UTF-8');
    $short = true;
    if (strlen($content) < 1200) {
        $short = false;
        $short_content = $content;
    }
    $post = array("id" => $rs->f('post_id'), "date" => mysqldatetime_to_date("d/m/Y", $rs->f('pubdate')), "day" => mysqldatetime_to_date("d", $rs->f('pubdate')), "month" => mysqldatetime_to_date("m", $rs->f('pubdate')), "year" => mysqldatetime_to_date("Y", $rs->f('pubdate')), "hour" => mysqldatetime_to_date("H:i", $rs->f('pubdate')), "permalink" => urldecode($post_permalink), "title" => $title, "content" => $content, "short_content" => $short_content, "image" => $rs->f('image'), "author_id" => $rs->f('user_id'), "author_fullname" => $rs->f('user_fullname'), "author_email" => $rs->f('user_email'), "nbview" => $rs->f('nbview'), "last_viewed" => mysqldatetime_to_date('d/m/Y H:i', $rs->f('last_viewed')), "user_votes" => getNbVotes(null, $rs->f('user_id')), "user_posts" => getNbPosts(null, $rs->f('user_id')));
    $post['description'] = sprintf(T_('By %s, on %s at %s.'), '<a href="#" onclick="javascript:add_user(\'' . $rs->f('user_id') . '\')">' . $rs->f('user_fullname') . '</a>', $post["date"], $post["hour"]);
    $post['description'] .= ' <a href="' . BP_PLANET_URL . '/index.php?post_id=' . $rs->f('post_id') . '" title="' . $post['title'] . '">' . T_("View post detail") . '</a>';
    if (!empty($search_value)) {
        # Format the occurences of the search request in the posts list
        $post['content'] = split_balise($search_value, '<span class="search-content">' . $search_value . '</span>', $post['content'], 'str_ireplace', 1);
        # Format the occurences of the search request in the posts title
        $post['title'] = split_balise($search_value, '<span class="search_title">' . $search_value . '</span>', $post['title'], 'str_ireplace', 1);
    }
    if ($short) {
        $last_space = strripos($post['short_content'], ' ');
        $post['short_content'] = substr($post['short_content'], 0, $last_space);
        $post['short_content'] = '<span class="short-content">' . strip_tags($post['short_content']) . "&nbsp;[...] </span>" . '<br /><span class="read-more"><a href="' . BP_PLANET_URL . '/?post_id=' . $post['id'] . '" title="' . $title . '">' . T_('Read more') . '</a></span>';
    }
    if ($strip_tags) {
        $post['content'] = $post['short_content'];
    }
    $post_tags = getPostTags($rs->f('post_id'));
    $tpl->setVar('post', $post);
    # Gravatar
    if ($avatar) {
        $libravatar = getUserIcon($post['author_email']);
        $tpl->setVar('avatar_url', $libravatar);
        $tpl->render('post.block.gravatar');
    }
    if ($multiview) {
        if ($post['image'] != '') {
            $tpl->render('post.image');
        }
        $tpl->render('post.multi');
    }
    if ($blog_settings->get('planet_vote')) {
        $votes = array("html" => afficheVotes($rs->f('score'), $rs->f('post_id')));
        $tpl->setVar('votes', $votes);
        $tpl->render('post.block.votes');
    }
    if (!empty($post_tags)) {
        foreach ($post_tags as $tag) {
            $tpl->setVar('post_tag', $tag);
            $tpl->render('post.tags');
        }
    }
    if ($blog_settings->get('allow_post_modification')) {
        if ($blog_settings->get('allow_tagging_everything')) {
            $tpl->render('post.action.tags');
        } else {
            if ($core->auth->userID() == $rs->f('user_id')) {
                $tpl->render('post.action.tags');
            }
        }
    }
    if ($user_settings != null) {
        if ($user_settings->get("social.twitter")) {
            $tpl->render('social.twitter');
        }
        if ($user_settings->get("social.shaarli")) {
            $simple_title = $post['title'];
            $tpl->setVar('stripped_title', addslashes($simple_title));
            $tpl->render('social.shaarli');
        }
        if ($user_settings->get("social.google")) {
            $tpl->render('social.google');
        }
        if ($user_settings->get("social.statusnet")) {
            $tpl->setVar('stripped_title', urlencode($rs->f('title')));
            $tpl->render('social.statusnet');
        }
        if ($user_settings->get("social.reddit")) {
            $tpl->setVar('stripped_title', addslashes($simple_title));
            $tpl->setVar('encoded_url', urlencode(BP_PLANET_URL . '/?post_id=' . $post['id']));
            $tpl->render('social.reddit');
        }
    }
    if ($blog_settings->get('show_similar_posts') && !empty($post_tags)) {
        $sql_sim = getSimilarPosts_SQL($rs->f('post_id'), $post_tags);
        $rsimilar = $core->con->select($sql_sim);
        if ($rsimilar->count() > 0) {
            while ($rsimilar->fetch()) {
                $post_permalink = $rsimilar->permalink;
                if ($blog_settings->get('internal_links')) {
                    $post_permalink = BP_PLANET_URL . "/index.php?post_id=" . $rsimilar->post_id;
                }
                $similar = array("author" => $rsimilar->user_fullname, "title" => $rsimilar->post_title, "permalink" => urldecode($post_permalink), "pubdate" => mysqldatetime_to_date("d/m/Y", $rsimilar->post_pubdate));
                $tpl->setVar('similar', $similar);
                $tpl->render("post.similar.item");
            }
            $tpl->render("post.similar.block");
        }
    }
    if ($blog_settings->get('allow_post_comments')) {
        if ($core->auth->userID() == $rs->f('user_id') || $core->hasRole('manager')) {
            if ($rs->f('comment')) {
                $tpl->render('post.action.uncomment');
            } else {
                $tpl->render('post.action.comment');
            }
        }
    }
    if ($blog_settings->get('allow_post_comments') && $rs->f('comment') == 1) {
        $sql = "SELECT * FROM " . $core->prefix . "comment\n\t\t\tWHERE post_id=" . $rs->f('post_id');
        //		print $sql;
        //		exit;
        $rs_comment = $core->con->select($sql);
        while ($rs_comment->fetch()) {
            $fullname = $rs_comment->user_fullname;
            if (!empty($rs_comment->user_site)) {
                $fullname = '<a href="' . $rs_comment->user_site . '">' . $fullname . '</a>';
            }
            $content = $core->wikiTransform($rs_comment->content);
            $comment = array("id" => $rs_comment->comment_id, "post_id" => $rs_comment->post_id, "user_fullname_link" => $fullname, "user_fullname" => $rs_comment->user_fullname, "user_site" => $rs_comment->user_site, "content" => $content, "pubdate" => mysqldatetime_to_date("d/m/Y", $rs_comment->created));
            $tpl->setVar("comment", $comment);
            $tpl->render('post.comment.element');
        }
        $tpl->render('post.comment.block');
    }
    if ($rs->count() > 1) {
        $tpl->render('post.backsummary');
    }
    return $tpl;
}