summaryrefslogtreecommitdiffstats
path: root/templates/part.feeddialog.php
blob: d03f04f242659552d7cc69ceb6e1b0ef787aa1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div id="addfeed_dialog" title="<?php echo $l->t("Add Subscription"); ?>">
<table width="100%" style="border: 0;">
<tr>
	<td>Add new feed</td>
	<td>
		<div class="add_parentfolder">
			<button id="dropdownBtn" onclick="News.DropDownMenu.dropdown(this)">
			    <?php echo $l->t('Choose folder'); ?>
			</button>
			<input id="inputfolderid" type="hidden" name="folderid" value="0" />
			<ul class="menu" id="dropdownmenu">
				<li style="margin-left: 0;" class="menuItem" onclick="News.DropDownMenu.selectItem(this, 0)"><b><?php echo $l->t('None'); ?></b></li>
				<?php echo $this->inc("part.folderlist"); ?>
			</ul>
		</div>
	</td>
</tr>
<tr>
	<td><input type="text" id="feed_add_url" placeholder="<?php echo $l->t('Address'); ?>" class="news_input" /></td>
	<td><input type="submit" value="<?php echo $l->t('Add'); ?>" onclick="News.Feed.submit(this)" id="feed_add_submit" /></td>
</tr>
</table>