當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Posts::all方法代碼示例

本文整理匯總了PHP中Posts::all方法的典型用法代碼示例。如果您正苦於以下問題:PHP Posts::all方法的具體用法?PHP Posts::all怎麽用?PHP Posts::all使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Posts的用法示例。


在下文中一共展示了Posts::all方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: view

 public function view()
 {
     $id = $this->request['id'];
     $profile = Profile::findByProfileUrl($this->request['id']);
     if ($this->request['params']['email_check']) {
         $fields = ['email' => $profile->email, 'registration_date' => $profile->registration_date, 'id' => $profile->user_id];
         $register = Register::_sendConfirmationMail($fields);
         return compact('register');
     }
     $preferences = Preferences::findByUserId($profile->user_id);
     $post_offset = 15;
     $posts = Posts::all(array('conditions' => array('user_id' => $profile->user_id, 'status' => 'publish'), 'limit' => 15));
     $stats = $profile->getStats();
     $favouriteTags = $profile->getFavouriteTags();
     return compact('profile', 'preferences', 'posts', 'post_offset', 'stats', 'favouriteTags');
 }
開發者ID:tiger154,項目名稱:prototype,代碼行數:16,代碼來源:ProfileController.php

示例2: function

/* Handle update my info */
$app->put('/user/me/info', function ($request, $response) {
    $token = parseToken($request);
    $data = parseJsonBody($request);
    return UsersInfo::update($response, $token, $data);
});
/* Handle get my posts */
$app->get('/user/me/posts', function ($request, $response) {
    $token = parseToken($request);
    return Posts::all($response, $token, null);
});
/* Handle get user posts */
$app->get('/user/{id:[0-9]+}/posts', function ($request, $response, $args) {
    $token = parseToken($request);
    $friend_id = $args['id'];
    return Posts::all($response, $token, $friend_id);
});
/* Handle get post */
$app->get('/post/{id}', function ($request, $response, $args) {
    $token = parseToken($request);
    $post_id = $args['id'];
    return Posts::get($response, $token, $post_id);
});
/* Handle delete post */
$app->delete('/post/{id}', function ($request, $response, $args) {
    $token = parseToken($request);
    $post_id = $args['id'];
    return Posts::delete($response, $token, $post_id);
});
/* Handle insert post */
$app->post('/post/', function ($request, $response, $args) {
開發者ID:AnwarMohamed,項目名稱:Abouda,代碼行數:31,代碼來源:index.php


注:本文中的Posts::all方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。