當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。