From 7f4a404566221231a7b1f16630ee4b15b6391810 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 30 Jan 2018 10:44:31 +0300 Subject: include: convert some spaces to tabs --- include/controls.php | 130 +++++++++++++++++++++++++-------------------------- 1 file changed, 65 insertions(+), 65 deletions(-) mode change 100644 => 100755 include/controls.php (limited to 'include/controls.php') diff --git a/include/controls.php b/include/controls.php old mode 100644 new mode 100755 index 931ccdd52..b416f4d22 --- a/include/controls.php +++ b/include/controls.php @@ -71,106 +71,106 @@ function print_radio($id, $default, $true_is, $values, $attributes = "") { } function print_feed_multi_select($id, $default_ids = [], - $attributes = "", $include_all_feeds = true, - $root_id = null, $nest_level = 0) { + $attributes = "", $include_all_feeds = true, + $root_id = null, $nest_level = 0) { - $pdo = DB::pdo(); + $pdo = DB::pdo(); - print_r(in_array("CAT:6",$default_ids)); + print_r(in_array("CAT:6",$default_ids)); - if (!$root_id) { - print ""; + if ($include_all_feeds) { + $is_selected = (in_array("0", $default_ids)) ? "selected=\"1\"" : ""; + print ""; + } + } - if (get_pref('ENABLE_FEED_CATS')) { + if (get_pref('ENABLE_FEED_CATS')) { - if (!$root_id) $root_id = null; + if (!$root_id) $root_id = null; - $sth = $pdo->prepare("SELECT id,title, + $sth = $pdo->prepare("SELECT id,title, (SELECT COUNT(id) FROM ttrss_feed_categories AS c2 WHERE c2.parent_cat = ttrss_feed_categories.id) AS num_children FROM ttrss_feed_categories WHERE owner_uid = :uid AND (parent_cat = :root_id OR (:root_id IS NULL AND parent_cat IS NULL)) ORDER BY title"); - $sth->execute([":uid" => $_SESSION['uid'], ":root_id" => $root_id]); + $sth->execute([":uid" => $_SESSION['uid'], ":root_id" => $root_id]); - while ($line = $sth->fetch()) { + while ($line = $sth->fetch()) { - for ($i = 0; $i < $nest_level; $i++) - $line["title"] = " - " . $line["title"]; + for ($i = 0; $i < $nest_level; $i++) + $line["title"] = " - " . $line["title"]; - $is_selected = in_array("CAT:".$line["id"], $default_ids) ? "selected=\"1\"" : ""; + $is_selected = in_array("CAT:".$line["id"], $default_ids) ? "selected=\"1\"" : ""; - printf("", - $line["id"], htmlspecialchars($line["title"])); + printf("", + $line["id"], htmlspecialchars($line["title"])); - if ($line["num_children"] > 0) - print_feed_multi_select($id, $default_ids, $attributes, - $include_all_feeds, $line["id"], $nest_level+1); + if ($line["num_children"] > 0) + print_feed_multi_select($id, $default_ids, $attributes, + $include_all_feeds, $line["id"], $nest_level+1); - $f_sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds + $f_sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds WHERE cat_id = ? AND owner_uid = ? ORDER BY title"); - $f_sth->execute([$line['id'], $_SESSION['uid']]); + $f_sth->execute([$line['id'], $_SESSION['uid']]); - while ($fline = $f_sth->fetch()) { - $is_selected = (in_array($fline["id"], $default_ids)) ? "selected=\"1\"" : ""; + while ($fline = $f_sth->fetch()) { + $is_selected = (in_array($fline["id"], $default_ids)) ? "selected=\"1\"" : ""; - $fline["title"] = " + " . $fline["title"]; + $fline["title"] = " + " . $fline["title"]; - for ($i = 0; $i < $nest_level; $i++) - $fline["title"] = " - " . $fline["title"]; + for ($i = 0; $i < $nest_level; $i++) + $fline["title"] = " - " . $fline["title"]; - printf("", - $fline["id"], htmlspecialchars($fline["title"])); - } - } + printf("", + $fline["id"], htmlspecialchars($fline["title"])); + } + } - if (!$root_id) { - $is_selected = in_array("CAT:0", $default_ids) ? "selected=\"1\"" : ""; + if (!$root_id) { + $is_selected = in_array("CAT:0", $default_ids) ? "selected=\"1\"" : ""; - printf("", - __("Uncategorized")); + printf("", + __("Uncategorized")); - $f_sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds + $f_sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds WHERE cat_id IS NULL AND owner_uid = ? ORDER BY title"); - $f_sth->execute([$_SESSION['uid']]); + $f_sth->execute([$_SESSION['uid']]); - while ($fline = $f_sth->fetch()) { - $is_selected = in_array($fline["id"], $default_ids) ? "selected=\"1\"" : ""; + while ($fline = $f_sth->fetch()) { + $is_selected = in_array($fline["id"], $default_ids) ? "selected=\"1\"" : ""; - $fline["title"] = " + " . $fline["title"]; + $fline["title"] = " + " . $fline["title"]; - for ($i = 0; $i < $nest_level; $i++) - $fline["title"] = " - " . $fline["title"]; + for ($i = 0; $i < $nest_level; $i++) + $fline["title"] = " - " . $fline["title"]; - printf("", - $fline["id"], htmlspecialchars($fline["title"])); - } - } + printf("", + $fline["id"], htmlspecialchars($fline["title"])); + } + } - } else { - $sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds + } else { + $sth = $pdo->prepare("SELECT id,title FROM ttrss_feeds WHERE owner_uid = ? ORDER BY title"); - $sth->execute([$_SESSION['uid']]); + $sth->execute([$_SESSION['uid']]); - while ($line = $sth->fetch()) { + while ($line = $sth->fetch()) { - $is_selected = (in_array($line["id"], $default_ids)) ? "selected=\"1\"" : ""; + $is_selected = (in_array($line["id"], $default_ids)) ? "selected=\"1\"" : ""; - printf("", - $line["id"], htmlspecialchars($line["title"])); - } - } + printf("", + $line["id"], htmlspecialchars($line["title"])); + } + } - if (!$root_id) { - print ""; - } + if (!$root_id) { + print ""; + } } function print_feed_cat_select($id, $default_id, @@ -195,7 +195,7 @@ function print_feed_cat_select($id, $default_id, $found = 0; while ($line = $sth->fetch()) { - ++$found; + ++$found; if ($line["id"] == $default_id) { $is_selected = "selected=\"1\""; @@ -315,7 +315,7 @@ function format_inline_player($url, $ctype) { function print_label_select($name, $value, $attributes = "") { - $pdo = Db::pdo(); + $pdo = Db::pdo(); $sth = $pdo->prepare("SELECT caption FROM ttrss_labels2 WHERE owner_uid = ? ORDER BY caption"); @@ -338,4 +338,4 @@ function print_label_select($name, $value, $attributes = "") { print ""; -} \ No newline at end of file +} -- cgit v1.2.3