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


PHP Eden_Google_Error::i方法代碼示例

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


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

示例1: __construct

 public function __construct($token, $developerId)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string');
     $this->_token = $token;
     $this->_developerId = $developerId;
 }
開發者ID:taqmaninw,項目名稱:apipack,代碼行數:7,代碼來源:youtube.php

示例2: delete

 /**
  * Delete a message 
  *
  * @param string
  * @param string
  * @return array
  */
 public function delete($messageId, $userId = self::DEFAULT_VALUE)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string');
     //argument 2 must be a string
     return $this->_delete(sprintf(self::URL_YOUTUBE_MESSAGE_GET, $userId, $messageId));
 }
開發者ID:brynner,項目名稱:postr,代碼行數:14,代碼來源:message.php

示例3: __construct

 public function __construct($clientId, $clientSecret, $redirect)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string')->argument(3, 'string');
     //Argument 4 must be a string
     parent::__construct($clientId, $clientSecret, $redirect, self::REQUEST_URL, self::ACCESS_URL);
 }
開發者ID:nikkobautista,項目名稱:laravel-bootstrap-boilerplate,代碼行數:7,代碼來源:oauth.php

示例4: delete

 /**
  * Delete a photo
  *
  * @param string
  * @param string
  * @return array
  */
 public function delete($contactId, $userEmail = self::DAFAULT)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string');
     //argument 2 must be a string
     return $this->_delete(sprintf(self::URL_CONTACTS_GET_IMAGE, $userEmail, contactId), true);
 }
開發者ID:annaqin,項目名稱:eden,代碼行數:14,代碼來源:photo.php

示例5: dislike

 /**
  * Dislike a video
  *
  * @param string
  * @return array
  */
 public function dislike($videoId)
 {
     //argument 1 must be a string
     Eden_Google_Error::i()->argument(1, 'string');
     //make a xml template
     $query = Eden_Template::i()->set(self::VALUE, self::DISLIKE)->parsePHP(dirname(__FILE__) . '/template/like.php');
     return $this->_post(sprintf(self::URL_YOUTUBE_RATINGS, $videoId), $query);
 }
開發者ID:annaqin,項目名稱:eden,代碼行數:14,代碼來源:ratings.php

示例6: __construct

 public function __construct($api_key, $token)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string');
     Eden_Google_Error::i()->argument(2, 'string');
     $this->_google_api_key = $api_key;
     $this->_token = $token;
 }
開發者ID:annaqin,項目名稱:eden,代碼行數:8,代碼來源:latitude.php

示例7: getMeta

 /**
  * Returns the meta of the last call
  *
  * @return array
  */
 public function getMeta($key = NULL)
 {
     Eden_Google_Error::i()->argument(1, 'string', 'null');
     if (isset($this->_meta[$key])) {
         return $this->_meta[$key];
     }
     return $this->_meta;
 }
開發者ID:nikkobautista,項目名稱:laravel-bootstrap-boilerplate,代碼行數:13,代碼來源:base.php

示例8: getSubtivity

 /**
  * Retrieve all user's subtivity
  *
  * @param string
  * @return array
  */
 public function getSubtivity($userId = self::DEFAULT_VALUE)
 {
     //argument 1 must be a string
     Eden_Google_Error::i()->argument(1, 'string');
     //populate fields
     $query = array(self::RESPONSE => self::JSON_FORMAT, self::VERSION => self::VERSION);
     return $this->_getResponse(sprintf(self::URL_YOUTUBE_SUBTIVITY, $userId), $query);
 }
開發者ID:brynner,項目名稱:postr,代碼行數:14,代碼來源:activity.php

示例9: getResponse

 /**
  * Returns elevation information
  *
  * @param string latitude,longitude pair in string(e.g. "40.714728,-73.998672") 
  * @return array
  */
 public function getResponse($location, $sensor = 'false')
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string');
     //argument 2 must be a string
     $this->_query['locations'] = $location;
     $this->_query['sensor'] = $sensor;
     return $this->_getResponse(self::URL_MAP_ELEVATION, $this->_query);
 }
開發者ID:brynner,項目名稱:postr,代碼行數:15,代碼來源:elevation.php

示例10: getResponse

 /**
  * Returns geocode information
  *
  * @param string
  * @param string
  * @return array
  */
 public function getResponse($address, $sensor = 'false')
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string');
     //argument 2 must be a string
     $this->_query['address'] = $address;
     $this->_query['sensor'] = $sensor;
     return $this->_getResponse(self::URL_MAP_GEOCODING, $this->_query);
 }
開發者ID:brynner,項目名稱:postr,代碼行數:16,代碼來源:geocoding.php

示例11: upload

 /**
  * Upload video to youtube
  *
  * @return form
  */
 public function upload($uploadToken, $postUrl, $redirectUrl)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'object', 'string')->argument(2, 'object', 'string')->argument(3, 'string');
     //argument 3 must be a string
     //make a xml template
     $query = Eden_Template::i()->set(self::UPLOAD_TOKEN, $uploadToken)->set(self::REDIRECT_URL, $redirectUrl)->set(self::POST_URL, $postUrl)->parsePHP(dirname(__FILE__) . '/template/form.php');
     return $query;
 }
開發者ID:brynner,項目名稱:postr,代碼行數:14,代碼來源:upload.php

示例12: getElevation

 /**
  * Returns elevation information
  *
  * @param string latitude,longitude pair in string(e.g. "40.714728,-73.998672") 
  * @return array
  */
 public function getElevation($location, $sensor = 'false')
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string');
     //argument 2 must be a string
     //populate paramenter
     $query = array('locations' => $ocation, 'sensor' => $sensor, 'path' => $this->_path, 'samples' => $this->_samples);
     //optional
     return $this->_getResponse(self::URL_MAP_ELEVATION, $query);
 }
開發者ID:nikkobautista,項目名稱:laravel-bootstrap-boilerplate,代碼行數:16,代碼來源:elevation.php

示例13: checkoutForm

 /**
  * Returns a checkout form
  *
  * @param string
  * @param string|integer
  * @param string
  * @param string|integer
  * @param string 
  * @param boolean Set to false for live url
  * @return array
  */
 public function checkoutForm($itemName, $price, $description, $quantity, $currency = 'USD', $test = true)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string', 'int')->argument(3, 'string')->argument(4, 'string', 'int')->argument(5, 'string')->argument(6, 'bool');
     //argument 6 must be a booelean
     if ($test = true) {
         //set url to sandbox
         $url = sprintf(self::URL_TEST_CHECKOUT, $this->_merchantId);
     } else {
         //set url to live account
         $url = sprintf(self::URL_LIVE_CHECKOUT, $this->_merchantId);
     }
     //make a xml template
     $form = Eden_Template::i()->set('url', $url)->set('itemName', $itemName)->set('itemDescription', $description)->set('itemPrice', $price)->set('itemCurrency', $currency)->set('itemQuantity', $quantity)->set('merchantId', $this->_merchantId)->parsePHP(dirname(__FILE__) . '/template/form.php');
     return $form;
 }
開發者ID:taqmaninw,項目名稱:apipack,代碼行數:27,代碼來源:form.php

示例14: getActivityList

 /**
  * List all of the people in the specified 
  * collection for a particular activity
  *
  * @param string
  * @param string
  * @return array
  */
 public function getActivityList($activityId, $collection)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string');
     //argument 1 must be a string
     //if the input value is not allowed
     if (!in_array($collection, array('plusoners', 'resharers'))) {
         //throw error
         Eden_Google_Error::i()->setMessage(Eden_Google_Error::INVALID_COLLECTION)->addVariable($collection)->trigger();
     }
     $this->_query[self::ACTIVITY_ID] = $activityId;
     $this->_query[self::COLLECTION] = $collection;
     return $this->_getResponse(sprintf(self::URL_PEOPLE_ACTIVITY, $activityId, $collection), $this->_query);
 }
開發者ID:annaqin,項目名稱:eden,代碼行數:22,代碼來源:people.php

示例15: getChannelByRegion

 /**
  * Returns a collection of videos that match the API request parameters.
  *
  * @param string
  * @param string
  * @return array
  */
 public function getChannelByRegion($regionId, $feeds)
 {
     //argument test
     Eden_Google_Error::i()->argument(1, 'string')->argument(2, 'string');
     //argument 2 must be a string
     //if the input value is not allowed
     if (!in_array($feeds, array('most_viewed', 'most_subscribed'))) {
         //throw error
         Eden_Google_Error::i()->setMessage(Eden_Google_Error::INVALID_FEEDS_TWO)->addVariable($feeds)->trigger();
     }
     //populate parameters
     $query = array(self::VERSION => self::VERSION_TWO);
     return $this->_getResponse(sprintf(self::URL_YOUTUBE_REGION, $regionId, $feeds), $query);
 }
開發者ID:nikkobautista,項目名稱:laravel-bootstrap-boilerplate,代碼行數:21,代碼來源:channel.php


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