Ejemplo n.º 1
0
                <div class="span12">
                    <div class="page-header">
                        <h4> Following (<?php 
echo $total;
?>
)</h4>
                    </div>
                </div>
            </div>

            <div class="row">
                <div class="span8 offset1">
                    <div id="uwidgets">
                    <?php 
foreach ($followings as $following) {
    echo \com\indigloo\sc\html\SocialGraph::getWidget($loginId, $following, 2);
}
if ($total == 0) {
    $message = "No followings in your network";
    $options = array("hkey" => "dashboard.graph.add");
    echo \com\indigloo\sc\html\Site::getNoResult($message, $options);
}
?>
                    </div>
                </div>

            </div>
        </div> <!-- container -->

        <?php 
echo \com\indigloo\sc\util\Asset::version("/js/bundle.js");
Ejemplo n.º 2
0
Archivo: graph.php Proyecto: rjha/sc
<?php

$gNumRecords = sizeof($graphDBRows);
$htmlGraph = "";
if ($gNumRecords > 0) {
    foreach ($graphDBRows as $graphDBRow) {
        $htmlGraph .= \com\indigloo\sc\html\SocialGraph::getPubWidget($graphDBRow);
    }
} else {
    $message = "No records found!";
    $htmlGraph = \com\indigloo\sc\html\Site::getNoResult($message);
}
?>


<!DOCTYPE html>
<html>

    <head>
        <title> <?php 
echo $pageTitle;
?>
 </title>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="keywords" content="<?php 
echo $metaKeywords;
?>
">
        <meta name="description" content="<?php 
echo $metaDescription;
Ejemplo n.º 3
0
if (is_null($loginId)) {
    trigger_error("Error : NULL login_id on user dashboard", E_USER_ERROR);
}
$activityDao = new \com\indigloo\sc\dao\Activity();
$feedDataObj = $activityDao->getUserFeeds($loginId, 50);
$socialGraphDao = new \com\indigloo\sc\dao\SocialGraph();
$followers = $socialGraphDao->getFollowers($loginId, 5);
$followings = $socialGraphDao->getFollowing($loginId, 5);
$options = array("ui" => "feed", "image" => true);
$followersData = GraphHtml::getTable($loginId, $followers, 1, $options);
$options = array("link" => "/user/dashboard/follower.php", "size" => sizeof($followers), "title" => "Followers");
$followersHtml = GraphHtml::getDashWrapper($followersData, $options);
$options = array("ui" => "feed", "image" => true);
$followingsData = GraphHtml::getTable($loginId, $followings, 2, $options);
$options = array("link" => "/user/dashboard/following.php", "size" => sizeof($followings), "title" => "Followings");
$followingsHtml = GraphHtml::getDashWrapper($followingsData, $options);
$htmlObj = new \com\indigloo\sc\html\Activity();
$activityHtml = $htmlObj->getHtml($feedDataObj);
?>


<!DOCTYPE html>
<html>

    <head>
        <title> Activities - <?php 
echo $loginName;
?>
 </title>
        <?php 
include APP_WEB_DIR . '/inc/meta.inc';
Ejemplo n.º 4
0
Archivo: pub.php Proyecto: rjha/sc
use com\indigloo\sc\html\SocialGraph as GraphHtml;
use com\indigloo\sc\html\Lists as ListHtml;
$headerHtml = UserHtml::getPubHeader($userDBRow);
$content = PostHtml::getImageGrid($postDBRows);
$count = $ucounters["post_count"];
$options = array("title" => "Items", "tab" => "items", "max" => 8, "size" => $gNumDBRows["items"]);
$itemsHtml = UserHtml::getPubWrapper($pageBaseUrl, $count, $content, $options);
$content = PostHtml::getImageGrid($likeDBRows);
$count = $ucounters["like_count"];
$options = array("title" => "Likes", "tab" => "likes", "max" => 8, "size" => $gNumDBRows["likes"]);
$likesHtml = UserHtml::getPubWrapper($pageBaseUrl, $count, $content, $options);
$content = GraphHtml::getTable($loginId, $followers, 1, $followerUIOptions);
$count = $ucounters["follower_count"];
$options = array("title" => "Followers", "tab" => "followers", "max" => 5, "size" => $gNumDBRows["followers"]);
$followersHtml = UserHtml::getPubWrapper($pageBaseUrl, $count, $content, $options);
$content = GraphHtml::getTable($loginId, $followings, 2, $followingUIOptions);
$count = $ucounters["following_count"];
$options = array("title" => "Followings", "tab" => "followings", "max" => 5, "size" => $gNumDBRows["followings"]);
$followingsHtml = UserHtml::getPubWrapper($pageBaseUrl, $count, $content, $options);
$htmlActivityObj = new \com\indigloo\sc\html\Activity();
$activityHtml = $htmlActivityObj->getHtml($feedDataObj);
//reset content
$content = "";
foreach ($listDBRows as $listDBRow) {
    $content .= ListHtml::getPubWidget($listDBRow);
}
$count = $ucounters["list_count"];
$options = array("title" => "Lists", "tab" => "lists", "max" => 4, "size" => $gNumDBRows["lists"]);
$listHtml = UserHtml::getPubWrapper($pageBaseUrl, $count, $content, $options);
?>