当前位置: 首页>>代码示例>>PHP>>正文


PHP add_site_user函数代码示例

本文整理汇总了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());
 }
开发者ID:portokallidis,项目名称:Metamorphosis-Meducator,代码行数:11,代码来源:users.php

示例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);
 }
开发者ID:redvabel,项目名称:Vabelgg,代码行数:11,代码来源:ElggSite.php

示例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);
 }
开发者ID:sephiroth88,项目名称:Elgg,代码行数:15,代码来源:ElggUser.php

示例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);
 }
开发者ID:Twizanex,项目名称:GuildWoW,代码行数:13,代码来源:ElggSite.php


注:本文中的add_site_user函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。