2012-09-25 14:01:09 +04:00
|
|
|
<form id="files_external">
|
2012-05-24 19:06:03 +04:00
|
|
|
<fieldset class="personalblock">
|
2013-10-04 19:35:46 +04:00
|
|
|
<h2><?php p($l->t('External Storage')); ?></h2>
|
2013-02-28 00:31:27 +04:00
|
|
|
<?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) print_unescaped(''.$_['dependencies'].''); ?>
|
2013-10-14 14:12:26 +04:00
|
|
|
<table id="externalStorage" class="grid" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'>
|
2012-05-24 19:06:03 +04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2012-12-24 22:45:52 +04:00
|
|
|
<th></th>
|
2013-02-28 00:31:27 +04:00
|
|
|
<th><?php p($l->t('Folder name')); ?></th>
|
|
|
|
<th><?php p($l->t('External storage')); ?></th>
|
|
|
|
<th><?php p($l->t('Configuration')); ?></th>
|
|
|
|
<!--<th><?php p($l->t('Options')); ?></th> -->
|
2013-03-02 15:44:53 +04:00
|
|
|
<?php if ($_['isAdminPage']) print_unescaped('<th>'.$l->t('Applicable').'</th>'); ?>
|
2012-05-24 19:06:03 +04:00
|
|
|
<th> </th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2012-06-08 19:42:00 +04:00
|
|
|
<tbody width="100%">
|
|
|
|
<?php $_['mounts'] = array_merge($_['mounts'], array('' => array())); ?>
|
|
|
|
<?php foreach ($_['mounts'] as $mountPoint => $mount): ?>
|
2013-02-28 00:31:27 +04:00
|
|
|
<tr <?php print_unescaped(($mountPoint != '') ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?>>
|
2012-12-24 22:45:52 +04:00
|
|
|
<td class="status">
|
|
|
|
<?php if (isset($mount['status'])): ?>
|
2013-02-28 00:31:27 +04:00
|
|
|
<span class="<?php p(($mount['status']) ? 'success' : 'error'); ?>"></span>
|
2012-12-24 22:45:52 +04:00
|
|
|
<?php endif; ?>
|
|
|
|
</td>
|
2012-11-30 19:27:11 +04:00
|
|
|
<td class="mountPoint"><input type="text" name="mountPoint"
|
2013-02-18 11:11:59 +04:00
|
|
|
value="<?php p($mountPoint); ?>"
|
2013-02-28 00:31:27 +04:00
|
|
|
placeholder="<?php p($l->t('Folder name')); ?>" /></td>
|
2012-06-08 19:42:00 +04:00
|
|
|
<?php if ($mountPoint == ''): ?>
|
|
|
|
<td class="backend">
|
2013-02-28 00:31:27 +04:00
|
|
|
<select id="selectBackend" data-configurations='<?php print_unescaped(json_encode($_['backends'])); ?>'>
|
2012-11-30 19:27:11 +04:00
|
|
|
<option value="" disabled selected
|
2013-02-28 00:31:27 +04:00
|
|
|
style="display:none;"><?php p($l->t('Add storage')); ?></option>
|
2012-06-08 19:42:00 +04:00
|
|
|
<?php foreach ($_['backends'] as $class => $backend): ?>
|
2013-02-28 00:31:27 +04:00
|
|
|
<option value="<?php p($class); ?>"><?php p($backend['backend']); ?></option>
|
2012-05-24 19:06:03 +04:00
|
|
|
<?php endforeach; ?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
<?php else: ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<td class="backend"
|
2013-02-28 00:31:27 +04:00
|
|
|
data-class="<?php p($mount['class']); ?>"><?php p($mount['backend']); ?></td>
|
2012-05-24 19:06:03 +04:00
|
|
|
<?php endif; ?>
|
2012-06-08 19:42:00 +04:00
|
|
|
<td class ="configuration" width="100%">
|
|
|
|
<?php if (isset($mount['configuration'])): ?>
|
|
|
|
<?php foreach ($mount['configuration'] as $parameter => $value): ?>
|
|
|
|
<?php if (isset($_['backends'][$mount['class']]['configuration'][$parameter])): ?>
|
|
|
|
<?php $placeholder = $_['backends'][$mount['class']]['configuration'][$parameter]; ?>
|
|
|
|
<?php if (strpos($placeholder, '*') !== false): ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<input type="password"
|
2013-02-28 00:31:27 +04:00
|
|
|
data-parameter="<?php p($parameter); ?>"
|
|
|
|
value="<?php p($value); ?>"
|
|
|
|
placeholder="<?php p(substr($placeholder, 1)); ?>" />
|
2012-11-30 19:27:11 +04:00
|
|
|
<?php elseif (strpos($placeholder, '!') !== false): ?>
|
|
|
|
<label><input type="checkbox"
|
2013-02-28 00:31:27 +04:00
|
|
|
data-parameter="<?php p($parameter); ?>"
|
2013-01-14 23:30:39 +04:00
|
|
|
<?php if ($value == 'true'): ?> checked="checked"<?php endif; ?>
|
2013-02-28 00:31:27 +04:00
|
|
|
/><?php p(substr($placeholder, 1)); ?></label>
|
2012-06-08 19:42:00 +04:00
|
|
|
<?php elseif (strpos($placeholder, '&') !== false): ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<input type="text"
|
|
|
|
class="optional"
|
2013-02-28 00:31:27 +04:00
|
|
|
data-parameter="<?php p($parameter); ?>"
|
|
|
|
value="<?php p($value); ?>"
|
|
|
|
placeholder="<?php p(substr($placeholder, 5)); ?>" />
|
2012-06-12 19:36:25 +04:00
|
|
|
<?php elseif (strpos($placeholder, '#') !== false): ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<input type="hidden"
|
2013-02-28 00:31:27 +04:00
|
|
|
data-parameter="<?php p($parameter); ?>"
|
|
|
|
value="<?php p($value); ?>" />
|
2012-06-08 19:42:00 +04:00
|
|
|
<?php else: ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<input type="text"
|
2013-02-28 00:31:27 +04:00
|
|
|
data-parameter="<?php p($parameter); ?>"
|
|
|
|
value="<?php p($value); ?>"
|
|
|
|
placeholder="<?php p($placeholder); ?>" />
|
2012-06-08 19:42:00 +04:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
2013-01-02 20:54:21 +04:00
|
|
|
<?php if (isset($_['backends'][$mount['class']]['custom']) && !in_array('files_external/js/'.$_['backends'][$mount['class']]['custom'], \OC_Util::$scripts)): ?>
|
|
|
|
<?php OCP\Util::addScript('files_external', $_['backends'][$mount['class']]['custom']); ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<?php endif; ?>
|
2012-06-08 19:42:00 +04:00
|
|
|
<?php endif; ?>
|
2012-05-24 19:06:03 +04:00
|
|
|
</td>
|
2012-06-08 19:42:00 +04:00
|
|
|
<?php if ($_['isAdminPage']): ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<td class="applicable"
|
|
|
|
align="right"
|
|
|
|
data-applicable-groups='<?php if (isset($mount['applicable']['groups']))
|
2013-02-28 00:31:27 +04:00
|
|
|
print_unescaped(json_encode($mount['applicable']['groups'])); ?>'
|
2012-11-30 19:27:11 +04:00
|
|
|
data-applicable-users='<?php if (isset($mount['applicable']['users']))
|
2013-02-28 00:31:27 +04:00
|
|
|
print_unescaped(json_encode($mount['applicable']['users'])); ?>'>
|
2012-11-30 19:27:11 +04:00
|
|
|
<select class="chzn-select"
|
|
|
|
multiple style="width:20em;"
|
2013-02-28 00:31:27 +04:00
|
|
|
data-placeholder="<?php p($l->t('None set')); ?>">
|
|
|
|
<option value="all" <?php if (isset($mount['applicable']['users']) && in_array('all', $mount['applicable']['users'])) print_unescaped('selected="selected"');?> ><?php p($l->t('All Users')); ?></option>
|
|
|
|
<optgroup label="<?php p($l->t('Groups')); ?>">
|
2012-11-30 19:27:11 +04:00
|
|
|
<?php foreach ($_['groups'] as $group): ?>
|
2013-02-28 00:31:27 +04:00
|
|
|
<option value="<?php p($group); ?>(group)"
|
2012-11-30 19:27:11 +04:00
|
|
|
<?php if (isset($mount['applicable']['groups']) && in_array($group, $mount['applicable']['groups'])): ?>
|
|
|
|
selected="selected"
|
2013-02-28 00:31:27 +04:00
|
|
|
<?php endif; ?>><?php p($group); ?></option>
|
2012-11-30 19:27:11 +04:00
|
|
|
<?php endforeach; ?>
|
2012-06-08 19:42:00 +04:00
|
|
|
</optgroup>
|
2013-02-28 00:31:27 +04:00
|
|
|
<optgroup label="<?php p($l->t('Users')); ?>">
|
2012-11-30 19:27:11 +04:00
|
|
|
<?php foreach ($_['users'] as $user): ?>
|
2013-02-28 00:31:27 +04:00
|
|
|
<option value="<?php p($user); ?>"
|
2012-11-30 19:27:11 +04:00
|
|
|
<?php if (isset($mount['applicable']['users']) && in_array($user, $mount['applicable']['users'])): ?>
|
|
|
|
selected="selected"
|
2013-03-27 17:33:35 +04:00
|
|
|
<?php endif; ?>><?php p($_['userDisplayNames'][$user]); ?></option>
|
2012-11-30 19:27:11 +04:00
|
|
|
<?php endforeach; ?>
|
2012-06-08 19:42:00 +04:00
|
|
|
</optgroup>
|
2012-05-24 19:06:03 +04:00
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
<?php endif; ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<td <?php if ($mountPoint != ''): ?>class="remove"
|
|
|
|
<?php else: ?>style="visibility:hidden;"
|
2013-02-28 00:31:27 +04:00
|
|
|
<?php endif ?>><img alt="<?php p($l->t('Delete')); ?>"
|
|
|
|
title="<?php p($l->t('Delete')); ?>"
|
2012-11-30 19:27:11 +04:00
|
|
|
class="svg action"
|
2013-02-28 00:31:27 +04:00
|
|
|
src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>" /></td>
|
2012-05-24 19:06:03 +04:00
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2012-07-04 19:16:02 +04:00
|
|
|
<br />
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-09-25 14:01:09 +04:00
|
|
|
<?php if ($_['isAdminPage']): ?>
|
|
|
|
<br />
|
2012-11-30 19:27:11 +04:00
|
|
|
<input type="checkbox"
|
|
|
|
name="allowUserMounting"
|
|
|
|
id="allowUserMounting"
|
2013-02-28 00:31:27 +04:00
|
|
|
value="1" <?php if ($_['allowUserMounting'] == 'yes') print_unescaped(' checked="checked"'); ?> />
|
|
|
|
<label for="allowUserMounting"><?php p($l->t('Enable User External Storage')); ?></label><br/>
|
|
|
|
<em><?php p($l->t('Allow users to mount their own external storage')); ?></em>
|
2012-09-25 14:01:09 +04:00
|
|
|
<?php endif; ?>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
|
2012-12-15 23:02:16 +04:00
|
|
|
<?php if ( ! $_['isAdminPage']): ?>
|
2012-11-30 19:27:11 +04:00
|
|
|
<form id="files_external"
|
|
|
|
method="post"
|
|
|
|
enctype="multipart/form-data"
|
2013-02-28 00:31:27 +04:00
|
|
|
action="<?php p(OCP\Util::linkTo('files_external', 'ajax/addRootCertificate.php')); ?>">
|
2012-09-25 14:01:09 +04:00
|
|
|
<fieldset class="personalblock">
|
2013-10-04 19:35:46 +04:00
|
|
|
<h2><?php p($l->t('SSL root certificates'));?></h2>
|
2013-02-28 00:31:27 +04:00
|
|
|
<table id="sslCertificate" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'>
|
2012-07-04 19:16:02 +04:00
|
|
|
<tbody width="100%">
|
|
|
|
<?php foreach ($_['certs'] as $rootCert): ?>
|
2013-02-28 00:31:27 +04:00
|
|
|
<tr id="<?php p($rootCert) ?>">
|
|
|
|
<td class="rootCert"><?php p($rootCert) ?></td>
|
2012-11-30 19:27:11 +04:00
|
|
|
<td <?php if ($rootCert != ''): ?>class="remove"
|
|
|
|
<?php else: ?>style="visibility:hidden;"
|
2013-02-28 00:31:27 +04:00
|
|
|
<?php endif; ?>><img alt="<?php p($l->t('Delete')); ?>"
|
|
|
|
title="<?php p($l->t('Delete')); ?>"
|
2012-11-30 19:27:11 +04:00
|
|
|
class="svg action"
|
2013-02-28 00:31:27 +04:00
|
|
|
src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>" /></td>
|
2012-07-04 19:16:02 +04:00
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
2012-08-29 10:42:49 +04:00
|
|
|
</table>
|
2013-02-28 00:31:27 +04:00
|
|
|
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']); ?>">
|
2013-03-15 20:50:02 +04:00
|
|
|
<input type="file" id="rootcert_import" name="rootcert_import">
|
2013-02-28 00:31:27 +04:00
|
|
|
<input type="submit" name="cert_import" value="<?php p($l->t('Import Root Certificate')); ?>" />
|
2012-09-25 14:01:09 +04:00
|
|
|
</fieldset>
|
2013-03-15 18:09:55 +04:00
|
|
|
</form>
|
2012-12-15 23:02:16 +04:00
|
|
|
<?php endif; ?>
|