Lines Matching refs:blogId

31      * @param string $blogId The ID of the blog to get.
37 public function get($userId, $blogId, $optParams = array()) { argument
38 $params = array('userId' => $userId, 'blogId' => $blogId);
62 * @param string $blogId The ID of the blog to get.
68 public function get($blogId, $optParams = array()) { argument
69 $params = array('blogId' => $blogId);
127 * @param string $blogId ID of the blog to containing the comment.
133 public function get($blogId, $postId, $commentId, $optParams = array()) { argument
134 $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
146 * @param string $blogId ID of the blog to fetch comments from.
157 public function listComments($blogId, $postId, $optParams = array()) { argument
158 $params = array('blogId' => $blogId, 'postId' => $postId);
182 * @param string $blogId ID of the blog containing the page.
187 public function get($blogId, $pageId, $optParams = array()) { argument
188 $params = array('blogId' => $blogId, 'pageId' => $pageId);
200 * @param string $blogId ID of the blog to fetch pages from.
206 public function listPages($blogId, $optParams = array()) { argument
207 $params = array('blogId' => $blogId);
231 * @param string $blogId The Id of the Blog.
235 public function delete($blogId, $postId, $optParams = array()) { argument
236 $params = array('blogId' => $blogId, 'postId' => $postId);
244 * @param string $blogId ID of the blog to fetch the post from.
251 public function get($blogId, $postId, $optParams = array()) { argument
252 $params = array('blogId' => $blogId, 'postId' => $postId);
264 * @param string $blogId ID of the blog to fetch the post from.
271 public function getByPath($blogId, $path, $optParams = array()) { argument
272 $params = array('blogId' => $blogId, 'path' => $path);
284 * @param string $blogId ID of the blog to add the post to.
289 public function insert($blogId, Google_Post $postBody, $optParams = array()) { argument
290 $params = array('blogId' => $blogId, 'postBody' => $postBody);
302 * @param string $blogId ID of the blog to fetch posts from.
313 public function listPosts($blogId, $optParams = array()) { argument
314 $params = array('blogId' => $blogId);
326 * @param string $blogId The ID of the Blog.
332 public function patch($blogId, $postId, Google_Post $postBody, $optParams = array()) { argument
333 $params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody);
345 * @param string $blogId ID of the blog to fetch the post from.
350 public function search($blogId, $q, $optParams = array()) { argument
351 $params = array('blogId' => $blogId, 'q' => $q);
363 * @param string $blogId The ID of the Blog.
369 public function update($blogId, $postId, Google_Post $postBody, $optParams = array()) { argument
370 $params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody);
609 public $blogId; variable in Google_BlogPerUserInfo
613 public function setBlogId( $blogId) { argument
614 $this->blogId = $blogId;
617 return $this->blogId;