summaryrefslogtreecommitdiff
path: root/include/controls.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-05-04 14:26:44 +0300
committerAndrew Dolgov <[email protected]>2017-05-04 14:26:44 +0300
commit4122da0290d7bdb85e94b3e4b509be3ee56c6356 (patch)
tree3f79c20aeb007e2373a99bfa10477293307e5804 /include/controls.php
parente60d5b0a84d8ef1035c1b717124ab8db38f28dfc (diff)
move getArticleFeed to Article
move print_label_select to controls
Diffstat (limited to 'include/controls.php')
-rw-r--r--include/controls.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/controls.php b/include/controls.php
index 0c5683082..3ddf4fd9d 100644
--- a/include/controls.php
+++ b/include/controls.php
@@ -300,3 +300,28 @@ function format_inline_player($url, $ctype) {
return "";
}
+
+function print_label_select($name, $value, $attributes = "") {
+
+ $result = db_query("SELECT caption FROM ttrss_labels2
+ WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
+
+ print "<select default=\"$value\" name=\"" . htmlspecialchars($name) .
+ "\" $attributes>";
+
+ while ($line = db_fetch_assoc($result)) {
+
+ $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
+
+ print "<option value=\"".htmlspecialchars($line["caption"])."\"
+ $issel>" . htmlspecialchars($line["caption"]) . "</option>";
+
+ }
+
+# print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
+
+ print "</select>";
+
+
+}
+