summaryrefslogtreecommitdiff
path: root/include/controls_compat.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-12-16 06:29:28 +0000
committerAndrew Dolgov <fox@fakecake.org>2024-12-16 06:29:28 +0000
commite990a3c00fb630465996a29d60d9acc7687c8979 (patch)
tree6a1071eeb3e1a618ac3fe94bcf8363c6fbbc0bb5 /include/controls_compat.php
parentd1c0ba5944e225165a5761e3d9a6620d27aca263 (diff)
parent6f8f1b30d508dc3d2c3a067ca7fe2d161963ef5f (diff)
Merge branch 'feature/php-misc' into 'master'
More native typing, use some new PHP stuff See merge request tt-rss/tt-rss!88
Diffstat (limited to 'include/controls_compat.php')
-rw-r--r--include/controls_compat.php30
1 files changed, 13 insertions, 17 deletions
diff --git a/include/controls_compat.php b/include/controls_compat.php
index 5a2a9f2ba..d22f7fc3c 100644
--- a/include/controls_compat.php
+++ b/include/controls_compat.php
@@ -5,15 +5,13 @@
*/
function stylesheet_tag(string $filename, array $attributes = []): string {
- $attributes_str = \Controls\attributes_to_string(
- array_merge(
- [
- "href" => "$filename?" . filemtime($filename),
- "rel" => "stylesheet",
- "type" => "text/css",
- "data-orig-href" => $filename
- ],
- $attributes));
+ $attributes_str = \Controls\attributes_to_string([
+ 'href' => "$filename?" . filemtime($filename),
+ 'rel' => 'stylesheet',
+ 'type' => 'text/css',
+ 'data-orig-href' => $filename,
+ ...$attributes,
+ ]);
return "<link $attributes_str/>\n";
}
@@ -22,14 +20,12 @@ function stylesheet_tag(string $filename, array $attributes = []): string {
* @param array<string, mixed> $attributes
*/
function javascript_tag(string $filename, array $attributes = []): string {
- $attributes_str = \Controls\attributes_to_string(
- array_merge(
- [
- "src" => "$filename?" . filemtime($filename),
- "type" => "text/javascript",
- "charset" => "utf-8"
- ],
- $attributes));
+ $attributes_str = \Controls\attributes_to_string([
+ 'src' => "$filename?" . filemtime($filename),
+ 'type' => 'text/javascript',
+ 'charset' => 'utf-8',
+ ...$attributes,
+ ]);
return "<script $attributes_str></script>\n";
}