本文整理汇总了PHP中add_site_user函数的典型用法代码示例。如果您正苦于以下问题:PHP add_site_user函数的具体用法?PHP add_site_user怎么用?PHP add_site_user使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了add_site_user函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addToSite
/**
* Add this user to a particular site
*
* @param int $site_guid The guid of the site to add it to
* @return true|false
*/
function addToSite($site_guid)
{
// return add_site_user($this->getGUID(), $site_guid);
return add_site_user($site_guid, $this->getGUID());
}
示例2: addUser
/**
* Adds a user to the site.
*
* @param int $user_guid GUID
*
* @return bool
*/
public function addUser($user_guid)
{
return add_site_user($this->getGUID(), $user_guid);
}
示例3: addToSite
/**
* Add this user to a particular site
*
* @param \ElggSite $site The site to add this user to. This used to be the
* the site guid (still supported by deprecated)
* @return bool
*/
public function addToSite($site)
{
if (is_numeric($site)) {
elgg_deprecated_notice('\\ElggUser::addToSite() takes a site entity', 1.9);
return add_site_user($site, $this->getGUID());
}
return parent::addToSite($site);
}
示例4: addUser
/**
* Adds a user to the site.
*
* @param int $user_guid GUID
*
* @return bool
* @deprecated 1.9 Use \ElggSite::addEntity()
*/
public function addUser($user_guid)
{
elgg_deprecated_notice('\\ElggSite::addUser() is deprecated. Use \\ElggEntity::addEntity()', 1.9);
return add_site_user($this->getGUID(), $user_guid);
}