本文整理汇总了PHP中OC_Installer::removeApp方法的典型用法代码示例。如果您正苦于以下问题:PHP OC_Installer::removeApp方法的具体用法?PHP OC_Installer::removeApp怎么用?PHP OC_Installer::removeApp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OC_Installer
的用法示例。
在下文中一共展示了OC_Installer::removeApp方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: removeApp
/**
* @param string $app
* @return bool
*/
public static function removeApp($app)
{
if (self::isShipped($app)) {
return false;
}
return OC_Installer::removeApp($app);
}
示例2: tearDown
protected function tearDown()
{
OC_Installer::removeApp(self::$appid);
\OC::$server->getConfig()->setSystemValue('appstoreenabled', $this->appstore);
parent::tearDown();
}
示例3: disable
/**
* @brief disables an app
* @param string $app app
* @return bool
*
* This function set an app as disabled in appconfig.
*/
public static function disable($app)
{
self::$enabledAppsCache = array();
// flush
// check if app is a shipped app or not. if not delete
\OC_Hook::emit('OC_App', 'pre_disable', array('app' => $app));
OC_Appconfig::setValue($app, 'enabled', 'no');
// check if app is a shipped app or not. if not delete
if (!OC_App::isShipped($app)) {
OC_Installer::removeApp($app);
}
}
示例4: tearDown
protected function tearDown()
{
OC_Installer::removeApp(self::$appid);
OC_Config::setValue('appstoreenabled', $this->appstore);
parent::tearDown();
}
示例5: tearDown
public function tearDown()
{
OC_Installer::removeApp(self::$appid);
OC_Config::setValue('appstoreenabled', $this->appstore);
}