1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 03:15:56 +00:00

login form: use control helpers

This commit is contained in:
Andrew Dolgov
2021-02-16 15:05:32 +03:00
parent 22fc6871e8
commit af4b3e7df0
2 changed files with 10 additions and 9 deletions

View File

@@ -64,12 +64,12 @@
name=\"".htmlspecialchars($name)."\" value=\"".htmlspecialchars($value)."\">";
}
function checkbox_tag(string $name, bool $checked, string $value = "", string $attributes = "", string $id = "") {
function checkbox_tag(string $name, bool $checked = false, string $value = "", string $attributes = "", string $id = "") {
$is_checked = $checked ? "checked" : "";
$value_str = $value ? "value=\"".htmlspecialchars($value)."\"" : "";
return "<input dojoType='dijit.form.CheckBox' name=\"".htmlspecialchars($name)."\"
$value_str $is_checked $attributes name=\"".htmlspecialchars($id)."\">";
$value_str $is_checked $attributes id=\"".htmlspecialchars($id)."\">";
}
function select_feeds_cats(string $name, int $default_id = null, string $attributes = "",