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


PHP Util::getChannel方法代码示例

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


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

示例1: displayPanel

 /**
  * @return TemplateResponse
  */
 public function displayPanel()
 {
     $lastUpdateCheck = $this->dateTimeFormatter->formatDateTime($this->config->getAppValue('core', 'lastupdatedat'));
     $channels = ['daily', 'beta', 'stable', 'production'];
     $currentChannel = \OCP\Util::getChannel();
     // Remove the currently used channel from the channels list
     if (($key = array_search($currentChannel, $channels)) !== false) {
         unset($channels[$key]);
     }
     $updateState = $this->updateChecker->getUpdateState();
     $params = ['isNewVersionAvailable' => $updateState === [] ? false : true, 'lastChecked' => $lastUpdateCheck, 'currentChannel' => $currentChannel, 'channels' => $channels, 'newVersionString' => $updateState === [] ? '' : $updateState['updateVersion']];
     return new TemplateResponse($this->appName, 'admin', $params, '');
 }
开发者ID:stweil,项目名称:owncloud-core,代码行数:16,代码来源:AdminController.php

示例2: testDisplayPanelWithoutUpdate

 public function testDisplayPanelWithoutUpdate()
 {
     $channels = ['daily', 'beta', 'stable', 'production'];
     $currentChannel = \OCP\Util::getChannel();
     // Remove the currently used channel from the channels list
     if (($key = array_search($currentChannel, $channels)) !== false) {
         unset($channels[$key]);
     }
     $this->config->expects($this->exactly(2))->method('getAppValue')->willReturnMap([['core', 'lastupdatedat', '', '12345'], ['updatenotification', 'notify_groups', '["admin"]', '["admin"]']]);
     $this->dateTimeFormatter->expects($this->once())->method('formatDateTime')->with('12345')->willReturn('LastCheckedReturnValue');
     $this->updateChecker->expects($this->once())->method('getUpdateState')->willReturn([]);
     $params = ['isNewVersionAvailable' => false, 'lastChecked' => 'LastCheckedReturnValue', 'currentChannel' => \OCP\Util::getChannel(), 'channels' => $channels, 'newVersionString' => '', 'notify_groups' => 'admin'];
     $expected = new TemplateResponse('updatenotification', 'admin', $params, '');
     $this->assertEquals($expected, $this->adminController->displayPanel());
 }
开发者ID:rchicoli,项目名称:owncloud-core,代码行数:15,代码来源:AdminControllerTest.php

示例3: testOverrideChannel

 /**
  * @dataProvider channelProvider
  *
  * @param string $channel
  */
 public function testOverrideChannel($channel)
 {
     \OCP\Util::setChannel($channel);
     $actual = \OCP\Util::getChannel($channel);
     $this->assertEquals($channel, $actual);
 }
开发者ID:rchicoli,项目名称:owncloud-core,代码行数:11,代码来源:UtilTest.php

示例4: getCurrentChannel

 /**
  * Get current value
  * @return string
  */
 public function getCurrentChannel()
 {
     return \OCP\Util::getChannel();
 }
开发者ID:FelixHsieh,项目名称:updater,代码行数:8,代码来源:channel.php


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