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


PHP Sites::setName方法代码示例

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


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

示例1: Sites

 function test_Sites_set()
 {
     //Arrange
     $id = null;
     $services_id = null;
     $name = 'hotel deluxe';
     $analytics_profile = '5271170';
     $test_site = new Sites($id, $services_id, $name, $analytics_profile);
     //Act
     $test_site->setName('hotel max');
     $result1 = $test_site->getName();
     $test_site->setAnalyticsProfile('5271201');
     $result2 = $test_site->getAnalyticsProfile();
     //Assert
     $this->assertEquals('hotel max', $result1);
     $this->assertEquals('5271201', $result2);
 }
开发者ID:anniehoogendoorn,项目名称:google-analytics-app,代码行数:17,代码来源:SitesTest.php

示例2: switch

 if ($isError) {
     switch ($errorType) {
         case 1:
             $koala->alert($itext['TXT_PNAME_ALREADY_USED']);
             break;
         case 2:
             $koala->alert($itext['TXT_PNAME_BLACKLISTED']);
             break;
     }
     // Reset PName to old PName
     /*
     $oldPname = $siteMgr->getPName($objectID);
     $jsQueue->add ($objectID, HISTORYTYPE_SITE, 'OBJECT_CHANGE', sGuiUS(), 'site', NULL, NULL, $objectID.'-site', 'pname', $oldPname);
     */
 } else {
     $siteMgr->setName($objectID, $name);
     $siteMgr->setPName($objectID, $pname);
     $siteMgr->setFavicon($objectID, $favicon);
     $siteMgr->setDefaultTemplate($objectID, $defaulttemplate);
     $siteMgr->setTemplateRoot($objectID, $templateroot);
     $jsQueue->add($objectID, HISTORYTYPE_SITE, 'OBJECT_CHANGE', sGuiUS(), 'site', NULL, NULL, $objectID . '-site', 'name', $name);
     $jsQueue->add($objectID, HISTORYTYPE_SITE, 'OBJECT_CHANGE', sGuiUS(), 'page', NULL, NULL, $objectID . '-site', 'name', $name);
     $jsQueue->add($objectID, HISTORYTYPE_SITE, 'OBJECT_CHANGE', sGuiUS(), 'site', NULL, NULL, $objectID . '-site', 'pname', $pname);
     // Re-sort the list
     $koala->queueScript('if (Koala.windows[Koala.windows[\'' . $wid . '\'].boundWindow].sortList) Koala.windows[Koala.windows[\'' . $wid . '\'].boundWindow].sortList();');
     $jsQueue->add($objectID, HISTORYTYPE_SITE, 'REFRESH_WINDOW', sGuiUS(), 'name');
     // Fade all green fields
     $koala->queueScript("Koala.yg_fadeFields(\$('" . $wid . "'), 'input.changed');");
     $jsQueue->add($objectID, HISTORYTYPE_SITE, 'UNHIGHLIGHT_SITE', sGuiUS(), 'name');
 }
 break;
开发者ID:nrueckmann,项目名称:yeager,代码行数:31,代码来源:sites.php


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