Blame view

sources/apps/files_external/templates/settings.php 8.08 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
  <form id="files_external" class="section">
31b7f2792   Kload   Upgrade to ownclo...
2
  	<h2><?php p($l->t('External Storage')); ?></h2>
6d9380f96   Cédric Dupont   Update sources OC...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  	<?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) print_unescaped(''.$_['dependencies'].''); ?>
  	<table id="externalStorage" class="grid" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'>
  		<thead>
  			<tr>
  				<th></th>
  				<th><?php p($l->t('Folder name')); ?></th>
  				<th><?php p($l->t('External storage')); ?></th>
  				<th><?php p($l->t('Configuration')); ?></th>
  				<?php if ($_['isAdminPage']) print_unescaped('<th>'.$l->t('Available for').'</th>'); ?>
  				<th>&nbsp;</th>
  			</tr>
  		</thead>
  		<tbody>
  		<?php $_['mounts'] = array_merge($_['mounts'], array('' => array())); ?>
  		<?php foreach ($_['mounts'] as $mount): ?>
  			<tr <?php print_unescaped(isset($mount['mountpoint']) ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?>>
  				<td class="status">
  				<?php if (isset($mount['status'])): ?>
  					<span class="<?php p(($mount['status']) ? 'success' : 'error'); ?>"></span>
  				<?php endif; ?>
  				</td>
  				<td class="mountPoint"><input type="text" name="mountPoint"
  											  value="<?php p(isset($mount['mountpoint']) ? $mount['mountpoint'] : ''); ?>"
  											  data-mountpoint="<?php p(isset($mount['mountpoint']) ? $mount['mountpoint'] : ''); ?>"
  											  placeholder="<?php p($l->t('Folder name')); ?>" />
  				</td>
  				<?php if (!isset($mount['mountpoint'])): ?>
  					<td class="backend">
  						<select id="selectBackend" data-configurations='<?php p(json_encode($_['backends'])); ?>'>
  							<option value="" disabled selected
  									style="display:none;"><?php p($l->t('Add storage')); ?></option>
  							<?php foreach ($_['backends'] as $class => $backend): ?>
  								<option value="<?php p($class); ?>"><?php p($backend['backend']); ?></option>
  							<?php endforeach; ?>
  						</select>
03e52840d   Kload   Init
38
  					</td>
6d9380f96   Cédric Dupont   Update sources OC...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  				<?php else: ?>
  					<td class="backend" data-class="<?php p($mount['class']); ?>"><?php p($mount['backend']); ?>
  					</td>
  				<?php endif; ?>
  				<td class ="configuration">
  					<?php if (isset($mount['options'])): ?>
  						<?php foreach ($mount['options'] as $parameter => $value): ?>
  							<?php if (isset($_['backends'][$mount['class']]['configuration'][$parameter])): ?>
  								<?php
  									$placeholder = $_['backends'][$mount['class']]['configuration'][$parameter];
  									$is_optional = FALSE;
  									if (strpos($placeholder, '&') === 0) {
  										$is_optional = TRUE;
  										$placeholder = substr($placeholder, 1);
  									}
  								?>
  								<?php if (strpos($placeholder, '*') === 0): ?>
  									<input type="password"
  										   <?php if ($is_optional): ?> class="optional"<?php endif; ?>
  										   data-parameter="<?php p($parameter); ?>"
  										   value="<?php p($value); ?>"
  										   placeholder="<?php p(substr($placeholder, 1)); ?>" />
  								<?php elseif (strpos($placeholder, '!') === 0): ?>
  									<label><input type="checkbox"
  												  data-parameter="<?php p($parameter); ?>"
  												  <?php if ($value == 'true'): ?> checked="checked"<?php endif; ?>
  												  /><?php p(substr($placeholder, 1)); ?></label>
  								<?php elseif (strpos($placeholder, '#') === 0): ?>
  									<input type="hidden"
  										   data-parameter="<?php p($parameter); ?>"
  										   value="<?php p($value); ?>" />
  								<?php else: ?>
  									<input type="text"
  										   <?php if ($is_optional): ?> class="optional"<?php endif; ?>
  										   data-parameter="<?php p($parameter); ?>"
  										   value="<?php p($value); ?>"
  										   placeholder="<?php p($placeholder); ?>" />
03e52840d   Kload   Init
76
  								<?php endif; ?>
03e52840d   Kload   Init
77
  							<?php endif; ?>
6d9380f96   Cédric Dupont   Update sources OC...
78
79
80
  						<?php endforeach; ?>
  						<?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']); ?>
03e52840d   Kload   Init
81
  						<?php endif; ?>
03e52840d   Kload   Init
82
  					<?php endif; ?>
6d9380f96   Cédric Dupont   Update sources OC...
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  				</td>
  				<?php if ($_['isAdminPage']): ?>
  				<td class="applicable"
  					align="right"
  					data-applicable-groups='<?php if (isset($mount['applicable']['groups']))
  													print_unescaped(json_encode($mount['applicable']['groups'])); ?>'
  					data-applicable-users='<?php if (isset($mount['applicable']['users']))
  													print_unescaped(json_encode($mount['applicable']['users'])); ?>'>
  						<select class="chzn-select"
  							multiple style="width:20em;"
  							data-placeholder="<?php p($l->t('No user or group')); ?>">
  							<option value="all"
  								<?php if (empty($mount['class']) || (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')); ?>">
  							<?php foreach ($_['groups'] as $group): ?>
  								<option value="<?php p($group); ?>(group)"
  								<?php if (isset($mount['applicable']['groups']) && in_array($group, $mount['applicable']['groups'])): ?>
  										selected="selected"
  								<?php endif; ?>><?php p($group); ?></option>
  							<?php endforeach; ?>
  							</optgroup>
  							<optgroup label="<?php p($l->t('Users')); ?>">
  							<?php foreach ($_['users'] as $user): ?>
  								<option value="<?php p($user); ?>"
  								<?php if (isset($mount['applicable']['users']) && in_array($user, $mount['applicable']['users'])): ?>
  										selected="selected"
  								<?php endif; ?>><?php p($_['userDisplayNames'][$user]); ?></option>
  							<?php endforeach; ?>
  							</optgroup>
  						</select>
  					</td>
  				<?php endif; ?>
  				<td <?php if (isset($mount['mountpoint'])): ?>class="remove"
  					<?php else: ?>style="visibility:hidden;"
  					<?php endif ?>><img alt="<?php p($l->t('Delete')); ?>"
  										title="<?php p($l->t('Delete')); ?>"
  										class="svg action"
  										src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>" /></td>
  			</tr>
  		<?php endforeach; ?>
  		</tbody>
  	</table>
  	<br />
  
  	<?php if ($_['isAdminPage']): ?>
03e52840d   Kload   Init
130
  		<br />
6d9380f96   Cédric Dupont   Update sources OC...
131
132
133
  		<input type="checkbox" name="allowUserMounting" id="allowUserMounting"
  			value="1" <?php if ($_['allowUserMounting'] == 'yes') print_unescaped(' checked="checked"'); ?> />
  		<label for="allowUserMounting"><?php p($l->t('Enable User External Storage')); ?></label> <span id="userMountingMsg" class="msg"></span>
03e52840d   Kload   Init
134

6d9380f96   Cédric Dupont   Update sources OC...
135
136
137
138
139
140
141
142
143
  		<p id="userMountingBackends"<?php if ($_['allowUserMounting'] != 'yes'): ?> class="hidden"<?php endif; ?>>
  			<?php p($l->t('Allow users to mount the following external storage')); ?><br />
  			<?php $i = 0; foreach ($_['personal_backends'] as $class => $backend): ?>
  				<input type="checkbox" id="allowUserMountingBackends<?php p($i); ?>" name="allowUserMountingBackends[]" value="<?php p($class); ?>" <?php if ($backend['enabled']) print_unescaped(' checked="checked"'); ?> />
  				<label for="allowUserMountingBackends<?php p($i); ?>"><?php p($backend['backend']); ?></label> <br />
  				<?php $i++; ?>
  			<?php endforeach; ?>
  		</p>
  	<?php endif; ?>
03e52840d   Kload   Init
144
145
146
  </form>
  
  <?php if ( ! $_['isAdminPage']):  ?>
6d9380f96   Cédric Dupont   Update sources OC...
147
  <form id="files_external" class="section"
03e52840d   Kload   Init
148
149
150
  	  method="post"
  	  enctype="multipart/form-data"
  	  action="<?php p(OCP\Util::linkTo('files_external', 'ajax/addRootCertificate.php')); ?>">
31b7f2792   Kload   Upgrade to ownclo...
151
  		<h2><?php p($l->t('SSL root certificates'));?></h2>
03e52840d   Kload   Init
152
  		<table id="sslCertificate" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'>
6d9380f96   Cédric Dupont   Update sources OC...
153
  			<tbody>
03e52840d   Kload   Init
154
155
156
157
158
159
160
161
162
163
164
165
166
167
  			<?php foreach ($_['certs'] as $rootCert): ?>
  			<tr id="<?php p($rootCert) ?>">
  			<td class="rootCert"><?php p($rootCert) ?></td>
  			<td <?php if ($rootCert != ''): ?>class="remove"
  				<?php else: ?>style="visibility:hidden;"
  				<?php endif; ?>><img alt="<?php p($l->t('Delete')); ?>"
  									 title="<?php p($l->t('Delete')); ?>"
  									 class="svg action"
  									 src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>" /></td>
  			</tr>
  			<?php endforeach; ?>
  			</tbody>
  		</table>
  		<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']); ?>">
31b7f2792   Kload   Upgrade to ownclo...
168
  		<input type="file" id="rootcert_import" name="rootcert_import">
03e52840d   Kload   Init
169
  		<input type="submit" name="cert_import" value="<?php p($l->t('Import Root Certificate')); ?>" />
03e52840d   Kload   Init
170
171
  </form>
  <?php endif; ?>