able30'>backport/49477/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/apps/admin_migrate/templates/settings.php
blob: 36eec84d4890f918048b7c012d1a2148f7fc90e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<form id="export" action="#" method="post">
    <fieldset class="personalblock">
        <legend><strong><?php echo $l->t('Export this ownCloud instance');?></strong></legend>
        <p><?php echo $l->t('This will create a compressed file that contains the data of this owncloud instance.
            Please choose the export type:');?>
        </p>
        <h3>What would you like to export?</h3>
        <p>
        <input type="radio" name="export_type" value="instance" /> ownCloud instance ( suitable for import )<br />
		<input type="radio" name="export_type" value="system" /> ownCloud system files<br />
		<input type="radio" name="export_type" value="userfiles" /> Just user files<br />
        <input type="submit" name="admin_export" value="<?php echo $l->t('Export'); ?>" />
    </fieldset>
</form>
<form id="import" action="#" method="post" enctype="multipart/form-data">
    <fieldset class="personalblock">
        <legend><strong><?php echo $l->t('Import an ownCloud instance. THIS WILL DELETE ALL CURRENT OWNCLOUD DATA');?></strong></legend>
        <p><?php echo $l->t('All current ownCloud data will be replaced by the ownCloud instance that is uploaded.');?>
        </p>
        <p><input type="file" id="owncloud_import" name="owncloud_import"><label for="owncloud_import"><?php echo $l->t('ownCloud Export Zip File');?></label>
        </p>
        <input type="submit" name="admin_import" value="<?php echo $l->t('Import'); ?>" />
    </fieldset>
</form>