mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 03:25:55 +00:00
use shortcut echo syntax for php templates
This commit is contained in:
28
prefs.php
28
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>
|
||||
© 2005-<?php echo date('Y') ?>
|
||||
<span title="<?= htmlspecialchars($last_error) ?>">v<?= $version ?></span>
|
||||
© 2005-<?= date('Y') ?>
|
||||
<a class="text-muted" target="_blank"
|
||||
href="https://fakecake.org/">Andrew Dolgov</a>
|
||||
</div> <!-- footer -->
|
||||
|
||||
Reference in New Issue
Block a user