summaryrefslogtreecommitdiff
path: root/prefs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-14 09:15:51 +0300
committerAndrew Dolgov <[email protected]>2021-02-14 09:15:51 +0300
commit15fd23c374eb32c50733de1906065f552afbfbc4 (patch)
tree7c693cf1a27d7c3049fe75af85bcf98ee4d2f836 /prefs.php
parentd4c925819b9d85a00520e413a90cfbcd61a1c667 (diff)
use shortcut echo syntax for php templates
Diffstat (limited to 'prefs.php')
-rw-r--r--prefs.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/prefs.php b/prefs.php
index 61e1145b7..9d5f8e499 100644
--- a/prefs.php
+++ b/prefs.php
@@ -24,7 +24,7 @@
<!DOCTYPE html>
<html>
<head>
- <title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
+ <title>Tiny Tiny RSS : <?= __("Preferences") ?></title>
<meta name="viewport" content="initial-scale=1,width=device-width" />
<?php if ($_SESSION["uid"] && empty($_SESSION["safe_mode"])) {
@@ -39,7 +39,7 @@
} ?>
<script type="text/javascript">
- const __csrf_token = "<?php echo $_SESSION["csrf_token"]; ?>";
+ const __csrf_token = "<?= $_SESSION["csrf_token"]; ?>";
</script>
<?php UserHelper::print_user_stylesheet() ?>
@@ -50,7 +50,7 @@
<script>
dojoConfig = {
async: true,
- cacheBust: "<?php echo get_scripts_timestamp(); ?>",
+ cacheBust: "<?= get_scripts_timestamp(); ?>",
packages: [
{ name: "lib", location: "../" },
{ name: "fox", location: "../../js" },
@@ -117,7 +117,7 @@
<div id="overlay">
<div id="overlay_inner">
- <?php echo __("Loading, please wait...") ?>
+ <?= __("Loading, please wait...") ?>
<div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
progress="0" maximum="100">
</div>
@@ -126,34 +126,34 @@
</div>
<div id="header">
- <!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
- <a href="#" onclick="document.location.href = 'index.php'"><?php echo __('Exit preferences') ?></a>
+ <!-- <a href='#' onclick="showHelp()"><?= __("Keyboard shortcuts") ?></a> | -->
+ <a href="#" onclick="document.location.href = 'index.php'"><?= __('Exit preferences') ?></a>
</div>
<div id="main" dojoType="dijit.layout.BorderContainer">
<div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
<div id="prefsTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-prefs"
- title="<i class='material-icons'>settings</i> <?php echo __('Preferences') ?>"></div>
+ title="<i class='material-icons'>settings</i> <?= __('Preferences') ?>"></div>
<div id="feedsTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-feeds"
- title="<i class='material-icons'>rss_feed</i> <?php echo __('Feeds') ?>"></div>
+ title="<i class='material-icons'>rss_feed</i> <?= __('Feeds') ?>"></div>
<div id="filtersTab" dojoType="dijit.layout.ContentPane"
style="padding : 0px"
href="backend.php?op=pref-filters"
- title="<i class='material-icons'>filter_list1</i> <?php echo __('Filters') ?>"></div>
+ title="<i class='material-icons'>filter_list1</i> <?= __('Filters') ?>"></div>
<div id="labelsTab" dojoType="dijit.layout.ContentPane"
style="padding : 0px"
href="backend.php?op=pref-labels"
- title="<i class='material-icons'>label_outline1</i> <?php echo __('Labels') ?>"></div>
+ title="<i class='material-icons'>label_outline1</i> <?= __('Labels') ?>"></div>
<?php if ($_SESSION["access_level"] >= 10) { ?>
<div id="usersTab" dojoType="dijit.layout.ContentPane"
style="padding : 0px"
href="backend.php?op=pref-users"
- title="<i class='material-icons'>person</i> <?php echo __('Users') ?>"></div>
+ title="<i class='material-icons'>person</i> <?= __('Users') ?>"></div>
<div id="systemTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-system"
- title="<i class='material-icons'>info_outline</i> <?php echo __('System') ?>"></div>
+ title="<i class='material-icons'>info_outline</i> <?= __('System') ?>"></div>
<?php } ?>
<?php
PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS);
@@ -162,8 +162,8 @@
<?php $version = get_version($git_commit, $git_timestamp, $last_error); ?>
<div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
<a class="text-muted" target="_blank" href="https://tt-rss.org/">Tiny Tiny RSS</a>
- <span title="<?php echo htmlspecialchars($last_error) ?>">v<?php echo $version ?></span>
- &copy; 2005-<?php echo date('Y') ?>
+ <span title="<?= htmlspecialchars($last_error) ?>">v<?= $version ?></span>
+ &copy; 2005-<?= date('Y') ?>
<a class="text-muted" target="_blank"
href="https://fakecake.org/">Andrew Dolgov</a>
</div> <!-- footer -->