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


PHP OC_App::enable方法代码示例

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


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

示例1: enableApp

function enableApp($app) {
	try {
		OC_App::enable($app);
	} catch (Exception $e) {
		echo $e;
	}
}
开发者ID:ninjasilicon,项目名称:core,代码行数:7,代码来源:enable_all.php

示例2: tearDown

 function tearDown()
 {
     // reset app files_encryption
     if ($this->stateFilesEncryption) {
         \OC_App::enable('files_encryption');
     } else {
         \OC_App::disable('files_encryption');
     }
 }
开发者ID:omusico,项目名称:isle-web-framework,代码行数:9,代码来源:base.php

示例3: tearDown

 function tearDown()
 {
     // reset app files_trashbin
     if ($this->stateFilesTrashbin) {
         OC_App::enable('files_trashbin');
     } else {
         OC_App::disable('files_trashbin');
     }
 }
开发者ID:omusico,项目名称:isle-web-framework,代码行数:9,代码来源:stream.php

示例4: tearDown

 protected function tearDown()
 {
     // reset app files_trashbin
     if ($this->stateFilesTrashbin) {
         \OC_App::enable('files_trashbin');
     } else {
         \OC_App::disable('files_trashbin');
     }
     parent::tearDown();
 }
开发者ID:samj1912,项目名称:repo,代码行数:10,代码来源:stream.php

示例5: tearDownAfterClass

 public static function tearDownAfterClass()
 {
     \OC_FileProxy::$enabled = true;
     // cleanup test user
     \OC_User::deleteUser(\Test_Encryption_Keymanager::TEST_USER);
     // reset app files_trashbin
     if (self::$stateFilesTrashbin) {
         OC_App::enable('files_trashbin');
     }
 }
开发者ID:olucao,项目名称:owncloud-core,代码行数:10,代码来源:keymanager.php

示例6: tearDown

 function tearDown()
 {
     // reset app files_trashbin
     if ($this->stateFilesTrashbin) {
         OC_App::enable('files_trashbin');
     } else {
         OC_App::disable('files_trashbin');
     }
     $this->assertTrue(\OC_FileProxy::$enabled);
 }
开发者ID:hjimmy,项目名称:owncloud,代码行数:10,代码来源:crypt.php

示例7: tearDownAfterClass

 public static function tearDownAfterClass()
 {
     // cleanup test user
     \OC_User::deleteUser(self::TEST_TRASHBIN_USER1);
     if (self::$encryptionStatus === true) {
         \OC_App::enable('files_encryption');
     }
     \OC_Config::setValue('trashbin_retention_obligation', self::$rememberRetentionObligation);
     \OC_Config::setValue('trashbin_auto_expire', self::$rememberAutoExpire);
     \OC_Hook::clear();
 }
开发者ID:Romua1d,项目名称:core,代码行数:11,代码来源:trashbin.php

示例8: tearDown

 function tearDown()
 {
     // reset app files_trashbin
     if ($this->stateFilesTrashbin) {
         OC_App::enable('files_trashbin');
     } else {
         OC_App::disable('files_trashbin');
     }
     $this->assertTrue(\OC_FileProxy::$enabled);
     \OCP\Config::deleteSystemValue('cipher');
 }
开发者ID:ArcherSys,项目名称:ArcherSysOSCloud7,代码行数:11,代码来源:crypt.php

示例9: tearDown

 protected function tearDown()
 {
     // reset app files_trashbin
     if ($this->stateFilesTrashbin) {
         \OC_App::enable('files_trashbin');
     } else {
         \OC_App::disable('files_trashbin');
     }
     $this->assertTrue(\OC_FileProxy::$enabled);
     $this->config->deleteSystemValue('cipher');
     parent::tearDown();
 }
开发者ID:samj1912,项目名称:repo,代码行数:12,代码来源:crypt.php

示例10: setUp

 public function setUp()
 {
     parent::setUp();
     \OC_App::enable('files_antivirus');
     $this->db = \OC::$server->getDb();
     $this->application = new Application();
     $this->container = $this->application->getContainer();
     $this->config = $this->getMockBuilder('\\OCA\\Files_Antivirus\\AppConfig')->disableOriginalConstructor()->getMock();
     $this->config->method('__call')->will($this->returnCallback(array($this, 'getAppValue')));
     $this->l10n = $this->getMockBuilder('\\OC_L10N')->disableOriginalConstructor()->getMock();
     $this->l10n->method('t')->will($this->returnArgument(0));
 }
开发者ID:amin-hedayati,项目名称:files_antivirus,代码行数:12,代码来源:testbase.php

示例11: tearDown

 public function tearDown()
 {
     if ($this->cache) {
         $this->cache->clear();
     }
     $result = \OC_User::deleteUser(self::$user);
     $this->assertTrue($result);
     Filesystem::tearDown();
     // reset app files_encryption
     if ($this->stateFilesEncryption) {
         \OC_App::enable('files_encryption');
     }
 }
开发者ID:olucao,项目名称:owncloud-core,代码行数:13,代码来源:updater.php

示例12: execute

 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $appId = $input->getArgument('app-id');
     if (\OC_App::isEnabled($appId)) {
         $output->writeln($appId . ' is already enabled');
     } else {
         if (!\OC_App::getAppPath($appId)) {
             $output->writeln($appId . ' not found');
         } else {
             \OC_App::enable($appId);
             $output->writeln($appId . ' enabled');
         }
     }
 }
开发者ID:omusico,项目名称:isle-web-framework,代码行数:14,代码来源:enable.php

示例13: tearDown

 protected function tearDown()
 {
     if ($this->cache) {
         $this->cache->clear();
     }
     $result = \OC_User::deleteUser(self::$user);
     $this->assertTrue($result);
     Filesystem::tearDown();
     Filesystem::mount($this->originalStorage, array(), '/');
     // reset app files_encryption
     if ($this->stateFilesEncryption) {
         \OC_App::enable('files_encryption');
     }
     parent::tearDown();
 }
开发者ID:heldernl,项目名称:owncloud8-extended,代码行数:15,代码来源:updaterlegacy.php

示例14: tearDownAfterClass

 public static function tearDownAfterClass()
 {
     \OC_FileProxy::$enabled = true;
     // cleanup test user
     \OC_User::deleteUser(\Test_Encryption_Keymanager::TEST_USER);
     // reset app files_trashbin
     if (self::$stateFilesTrashbin) {
         OC_App::enable('files_trashbin');
     }
     \OC_Hook::clear();
     \OC_FileProxy::clearProxies();
     // Delete keys in /data/
     $view = new \OC\Files\View('/');
     $view->rmdir('public-keys');
     $view->rmdir('owncloud_private_key');
 }
开发者ID:Romua1d,项目名称:core,代码行数:16,代码来源:keymanager.php

示例15: execute

 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $appId = $input->getArgument('app-id');
     if (!\OC_App::getAppPath($appId)) {
         $output->writeln($appId . ' not found');
         return 1;
     }
     $groups = $input->getOption('groups');
     if (empty($groups)) {
         \OC_App::enable($appId);
         $output->writeln($appId . ' enabled');
     } else {
         \OC_App::enable($appId, $groups);
         $output->writeln($appId . ' enabled for groups: ' . implode(', ', $groups));
     }
     return 0;
 }
开发者ID:GitHubUser4234,项目名称:core,代码行数:17,代码来源:Enable.php


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