2011-09-29 19:11:07 +04:00
|
|
|
<form id="export" action="#" method="post">
|
|
|
|
<fieldset class="personalblock">
|
2011-10-02 18:06:30 +04:00
|
|
|
<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.
|
2012-03-16 00:52:43 +04:00
|
|
|
Please choose the export type:');?>
|
2011-09-29 19:11:07 +04:00
|
|
|
</p>
|
2012-03-16 00:52:43 +04:00
|
|
|
<h3>What would you like to export?</h3>
|
|
|
|
<p>
|
2012-04-22 01:08:52 +04:00
|
|
|
<input type="radio" name="export_type" value="instance" style="width:20px;" /> ownCloud instance (suitable for import )<br />
|
|
|
|
<input type="radio" name="export_type" value="system" style="width:20px;" /> ownCloud system files<br />
|
|
|
|
<input type="radio" name="export_type" value="userfiles" style="width:20px;" /> Just user files<br />
|
2012-02-06 03:00:38 +04:00
|
|
|
<input type="submit" name="admin_export" value="<?php echo $l->t('Export'); ?>" />
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
2012-04-07 21:27:09 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* EXPERIMENTAL
|
|
|
|
?>
|
2012-02-06 03:00:38 +04:00
|
|
|
<form id="import" action="#" method="post" enctype="multipart/form-data">
|
|
|
|
<fieldset class="personalblock">
|
2012-03-17 02:54:37 +04:00
|
|
|
<legend><strong><?php echo $l->t('Import an ownCloud instance. THIS WILL DELETE ALL CURRENT OWNCLOUD DATA');?></strong></legend>
|
2012-02-06 03:00:38 +04:00
|
|
|
<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'); ?>" />
|
2011-09-29 19:11:07 +04:00
|
|
|
</fieldset>
|
|
|
|
</form>
|
2012-04-07 21:27:09 +04:00
|
|
|
<?php
|
|
|
|
*/
|
|
|
|
?>
|