summaryrefslogtreecommitdiffstats
path: root/apps/external/templates/settings.php
blob: b8139727eb6f98ab39595aec40a78ef94e63ff23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<form id="external">
	<fieldset class="personalblock">
		<strong>External Sites</strong><br />
		<ul class="external_sites">

		<?php
		$sites = OC_External::getSites();
		for($i = 0; $i < sizeof($sites); $i++) {
			echo '<li><input type="text" name="site_name[]" class="site_name" value="'.$sites[$i][0].'" placeholder="'.$l->t('Name').'" />
			<input type="text" class="site_url" name="site_url[]"  value="'.$sites[$i][1].'"  placeholder="'.$l->t('URL').'" />
			<img class="svg action delete_button" src="'.OCP\image_path("", "actions/delete.svg") .'" title="'.$l->t("Remove site").'" />
			</li>';
		}
		?>

		</ul>

        <input type="button" id="add_external_site" value="Add" />
		<span class="msg"></span>
	</fieldset>
</form>