1234567891011121314151617181920212223242526272829303132 |
- <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" 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 />
- <input type="submit" name="admin_export" value="<?php echo $l->t('Export'); ?>" />
- </fieldset>
- </form>
- <?php
- /*
- * EXPERIMENTAL
- ?>
- <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>
- <?php
- */
- ?>
|