コード例 #1
0
ファイル: enable_all.php プロジェクト: ninjasilicon/core
<?php
/**
 * Copyright (c) 2012 Thomas Müller <*****@*****.**>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

require_once __DIR__.'/../lib/base.php';

function enableApp($app) {
	try {
		OC_App::enable($app);
	} catch (Exception $e) {
		echo $e;
	}
}

enableApp('files_sharing');
enableApp('files_trashbin');
enableApp('encryption');
enableApp('user_ldap');
enableApp('files_versions');
enableApp('provisioning_api');

コード例 #2
0
ファイル: enable_all.php プロジェクト: olucao/owncloud-core
<?php

/**
 * Copyright (c) 2012 Thomas Müller <*****@*****.**>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */
require_once __DIR__ . '/../lib/base.php';
function enableApp($app)
{
    try {
        OC_App::enable($app);
    } catch (Exception $e) {
        echo $e;
    }
}
enableApp('files_sharing');
enableApp('files_trashbin');
enableApp('files_encryption');
enableApp('files_external');
enableApp('user_ldap');
enableApp('files_versions');
コード例 #3
0
ファイル: enable_all.php プロジェクト: evanjt/core
<?php

/**
 * Copyright (c) 2012 Thomas Müller <*****@*****.**>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */
require_once __DIR__ . '/../lib/base.php';
function enableApp($app)
{
    try {
        OC_App::enable($app);
    } catch (Exception $e) {
        echo $e;
    }
}
enableApp('files_sharing');
enableApp('files_trashbin');
enableApp('encryption');
enableApp('user_ldap');
enableApp('files_versions');
enableApp('provisioning_api');
enableApp('federation');
コード例 #4
0
ファイル: enable_all.php プロジェクト: rchicoli/owncloud-core
<?php

/**
 * Copyright (c) 2012 Thomas Müller <*****@*****.**>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */
require_once __DIR__ . '/../lib/base.php';
function enableApp($app)
{
    try {
        OC_App::enable($app);
    } catch (Exception $e) {
        echo $e;
    }
}
enableApp('files_sharing');
enableApp('files_trashbin');
enableApp('encryption');
enableApp('user_ldap');
enableApp('files_versions');
enableApp('provisioning_api');
enableApp('federation');
enableApp('federatedfilesharing');