/** @return String **/
 public function getPhotos()
 {
     if (empty($this->photos)) {
         $xh = $this->getFullNewsXML();
         $this->photos = Photo::getPhotos($xh->getHrefValue(PHOTOS));
     }
     return $this->photos;
 }
Example #2
0
</title>
<head>
		<link rel="stylesheet" href="../jQuery/jquery-ui.css" />
	    <script src="../jQuery/jquery-1.8.3.js"></script>
	    <script src="../jQuery/jquery-ui.js"></script>	
	    		<link href="../css/lightbox.css" rel="stylesheet" />
	    				<script src="../javascript/lightbox.js"></script>
</head>
<body>
<?php 
isset($_GET['id']) ? $album = $_GET['id'] : ($album = 0);
//Obtiene informacion del album
$ab = Album::getOneAlbum($album);
// Obtiene las fotos que contiene el album
$fotos = array();
$fotos = Photo::getPhotos($fotos, $album);
//print_r($fotos);
$f = count($fotos);
$i = 1;
//echo "<br>".$f;
?>
<div id="content2">

					<div class="box">
						<h2><?php 
echo $ab->description;
?>
</h2>							
						  <div class="imageRow">
						  	<div class="set">
						  		<?php 
 public function executePublicHangoutReview(sfWebRequest $request)
 {
     if (!isset($_GET['id'])) {
         die('Sorry! page cannot be found.');
     }
     $profileId = $_GET['id'];
     $Member = new Member();
     $Member->setId($profileId);
     $memberId = $Member->getMemberInfo('id');
     $gender = $Member->getMemberInfo('gender');
     $profilePictureId = $Member->getMemberInfo('profile_picture_id');
     $Photo = new Photo();
     $this->path = $Photo->getPicturePath($profilePictureId);
     $this->photos = array();
     $this->photos = $Photo->getPhotos($memberId);
     if (empty($this->path)) {
         $pictureName = strtolower($gender) == 'f' ? 'female.jpg' : 'male.png';
         $this->path = "images/{$pictureName}";
     }
     $this->userId = $memberId;
 }
Example #4
0
 public function profile($username, $page = 1)
 {
     $data = User::where('username', $username)->first();
     $query = DB::table('videos AS v')->join('users AS u', 'v.user_id', '=', 'u.id')->select(array('*'));
     $post_count = count($query->get());
     $view_count = $query->sum('v.video_view_count');
     $like_count = $query->sum('v.video_like_count');
     $comment_count = $query->sum('v.video_comment_count');
     $itemPerPage = 5;
     $videos = Video::getVideos($itemPerPage, $page);
     $photos = Photo::getPhotos($itemPerPage, $page);
     // @todo: show dung count
     return View::make('user.profile')->with('user', $data)->with('post_count', $post_count)->with('view_count', $view_count)->with('like_count', $like_count)->with('comment_count', $comment_count)->with('videos', $videos)->with('photos', $photos)->with('page', $page);
 }
Example #5
0
 public function index($page = 1)
 {
     $itemPerPage = 10;
     $photos = Photo::getPhotos(5, $page);
     return View::make("pages.photos")->with('photos', $photos)->with('page', $page);
 }