本文整理汇总了PHP中Photo::getPhotos方法的典型用法代码示例。如果您正苦于以下问题:PHP Photo::getPhotos方法的具体用法?PHP Photo::getPhotos怎么用?PHP Photo::getPhotos使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Photo
的用法示例。
在下文中一共展示了Photo::getPhotos方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getPhotos
/** @return String **/
public function getPhotos()
{
if (empty($this->photos)) {
$xh = $this->getFullNewsXML();
$this->photos = Photo::getPhotos($xh->getHrefValue(PHOTOS));
}
return $this->photos;
}
示例2: isset
</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
示例3: executePublicHangoutReview
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;
}
示例4: profile
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);
}
示例5: index
public function index($page = 1)
{
$itemPerPage = 10;
$photos = Photo::getPhotos(5, $page);
return View::make("pages.photos")->with('photos', $photos)->with('page', $page);
}