本文整理匯總了PHP中ElggUser::getPrivateSetting方法的典型用法代碼示例。如果您正苦於以下問題:PHP ElggUser::getPrivateSetting方法的具體用法?PHP ElggUser::getPrivateSetting怎麽用?PHP ElggUser::getPrivateSetting使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ElggUser
的用法示例。
在下文中一共展示了ElggUser::getPrivateSetting方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getCustomerId
/**
* Get Stripe customer ID for the user
* @return string|boolean
*/
public function getCustomerId()
{
$customer_id = $this->user->getPrivateSetting('stripe_customer_id');
if (!$customer_id) {
$stripe = new StripeClient();
// Try other customer IDs stored on this user
$customer_ids = $this->user->stripe_customer_id;
if ($customer_ids) {
if (!is_array($customer_ids)) {
$customer_ids = array($customer_ids);
}
foreach ($customer_ids as $customer_id) {
$account = $stripe->getCustomer($customer_id);
if ($account) {
break;
}
}
}
if (!$account) {
$account = $stripe->createCustomer($this->user);
}
$customer_id = $account->id;
$this->user->setPrivateSetting('stripe_customer_id', $customer_id);
}
return $customer_id;
}
示例2: getAccessToken
/**
* Get an access token for signing API requests
*/
public function getAccessToken()
{
if (!elgg_instanceof($this->entity)) {
return false;
}
switch ($this->entity->getType()) {
case 'site':
return StripeClientFactory::getSecretKey();
break;
default:
return $this->entity->getPrivateSetting('stripe_access_token');
break;
}
}