summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index 2d0f40615..bc3b28826 100644
--- a/functions.php
+++ b/functions.php
@@ -7086,4 +7086,28 @@
return true;
}
+
+ function print_label_select($link, $name, $value, $style = "") {
+
+ $result = db_query($link, "SELECT caption FROM ttrss_labels2
+ WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
+
+ print "<select default=\"$value\" name=\"" . htmlspecialchars($name) .
+ "\" style=\"$style\" onchange=\"labelSelectOnChange(this)\" >";
+
+ while ($line = db_fetch_assoc($result)) {
+
+ $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
+
+ print "<option $issel>" . htmlspecialchars($line["caption"]) . "</option>";
+
+ }
+
+ print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
+
+ print "</select>";
+
+
+ }
+
?>