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


PHP StatusNet::switchSite方法代码示例

本文整理汇总了PHP中StatusNet::switchSite方法的典型用法代码示例。如果您正苦于以下问题:PHP StatusNet::switchSite方法的具体用法?PHP StatusNet::switchSite怎么用?PHP StatusNet::switchSite使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在StatusNet的用法示例。


在下文中一共展示了StatusNet::switchSite方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: switchSite

 /**
  * Make sure we're on the right site configuration
  */
 protected function switchSite()
 {
     if ($this->site != StatusNet::currentSite()) {
         common_log(LOG_DEBUG, __METHOD__ . ": switching to site {$this->site}");
         $this->stats('switch');
         StatusNet::switchSite($this->site);
     }
 }
开发者ID:himmelex,项目名称:NTW,代码行数:11,代码来源:xmppmanager.php

示例2: switchSite

 /**
  * Switch site, if necessary, and reset current handler assignments
  * @param string $site
  */
 function switchSite($site)
 {
     if ($site != StatusNet::currentSite()) {
         $this->stats('switch');
         StatusNet::switchSite($site);
         $this->initialize();
     }
 }
开发者ID:microcosmx,项目名称:experiments,代码行数:12,代码来源:stompqueuemanager.php

示例3: recoverPassword

 static function recoverPassword($email)
 {
     $domain = self::toDomain($email);
     $sn = self::siteForDomain($domain);
     if (empty($sn)) {
         throw new NoSuchUserException(array('email' => $email));
     }
     StatusNet::switchSite($sn->nickname);
     $user = User::staticGet('email', $email);
     if (empty($user)) {
         throw new ClientException(_('No such user.'));
     }
 }
开发者ID:Grasia,项目名称:bolotweet,代码行数:13,代码来源:DomainStatusNetworkPlugin.php

示例4: checkSchema

 function checkSchema()
 {
     $config = $this->getConfig();
     Status_network::$wildcard = $config['WILDCARD'];
     StatusNet::switchSite($this->nickname);
     // We need to initialize the schema_version stuff to make later setup easier
     $schema = array();
     require INSTALLDIR . '/db/core.php';
     $tableDefs = $schema;
     $schema = Schema::get();
     $schemaUpdater = new SchemaUpdater($schema);
     foreach ($tableDefs as $table => $def) {
         $schemaUpdater->register($table, $def);
     }
     $schemaUpdater->checkSchema();
     Event::handle('CheckSchema');
 }
开发者ID:harriewang,项目名称:InnertieWebsite,代码行数:17,代码来源:domainstatusnetworkinstaller.php


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