aboutsummaryrefslogtreecommitdiff
path: root/app/views/configure/sharing.phtml
blob: e3ea116652b847f3801ffdda6601fabf1a89641e (plain)
1
2
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
38
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
<?php $this->partial ('aside_configure'); ?>

<div class="post">
	<a href="<?php echo _url ('index', 'index'); ?>"><?php echo Minz_Translate::t ('back_to_rss_feeds'); ?></a>

	<form method="post" action="<?php echo _url ('configure', 'sharing'); ?>">
		<legend><?php echo Minz_Translate::t ('sharing'); ?></legend>
		<div class="form-group">
			<label class="group-name" for="shaarli">
				<?php echo Minz_Translate::t ('your_shaarli'); ?>
			</label>
			<div class="group-controls">
				<input type="url" id="shaarli" name="shaarli" class="extend" value="<?php echo $this->conf->sharing ('shaarli'); ?>" placeholder="<?php echo Minz_Translate::t ('blank_to_disable'); ?>" size="64" />

				<?php echo FreshRSS_Themes::icon('help'); ?> <a target="_blank" href="http://sebsauvage.net/wiki/doku.php?id=php:shaarli"><?php echo Minz_Translate::t ('more_information'); ?></a>
			</div>
		</div>

		<div class="form-group">
			<label class="group-name" for="wallabag">
				<?php echo Minz_Translate::t ('your_wallabag'); ?>
			</label>
			<div class="group-controls">
				<input type="url" id="wallabag" name="wallabag" class="extend" value="<?php echo $this->conf->sharing ('wallabag'); ?>" placeholder="<?php echo Minz_Translate::t ('blank_to_disable'); ?>" size="64" />

				<?php echo FreshRSS_Themes::icon('help'); ?> <a target="_blank" href="http://www.wallabag.org"><?php echo Minz_Translate::t ('more_information'); ?></a>
			</div>
		</div>

		<div class="form-group">
			<label class="group-name" for="diaspora">
				<?php echo Minz_Translate::t ('your_diaspora_pod'); ?>
			</label>
			<div class="group-controls">
				<input type="url" id="diaspora" name="diaspora" class="extend" value="<?php echo $this->conf->sharing ('diaspora'); ?>" placeholder="<?php echo Minz_Translate::t ('blank_to_disable'); ?>" size="64" />

				<?php echo FreshRSS_Themes::icon('help'); ?> <a target="_blank" href="https://diasporafoundation.org/"><?php echo Minz_Translate::t ('more_information'); ?></a>
			</div>
		</div>

		<div class="form-group">
			<label class="group-name"><?php echo Minz_Translate::t ('activate_sharing'); ?></label>
			<div class="group-controls">
				<?php
					$services = array ('twitter', 'g+', 'facebook', 'email', 'print');

					foreach ($services as $service) {
				?>
				<label class="checkbox" for="<?php echo $service; ?>">
					<input type="checkbox" name="<?php echo $service; ?>" id="<?php echo $service; ?>" value="1"<?php echo $this->conf->sharing($service) ? ' checked="checked"' : ''; ?> />
					<?php echo Minz_Translate::t ($service); ?>
				</label>
				<?php } ?>
			</div>
		</div>

		<div class="form-group form-actions">
			<div class="group-controls">
				<button type="submit" class="btn btn-important"><?php echo Minz_Translate::t ('save'); ?></button>
				<button type="reset" class="btn"><?php echo Minz_Translate::t ('cancel'); ?></button>
			</div>
		</div>
	</form>
</div>