📄 events.tpl.php
字号:
<?php// -----------------------------------------------------------------------// This file is part of AROUNDMe// // Copyright (C) 2003-2007 Barnraiser// http://www.barnraiser.org/// info@barnraiser.org// // This program is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.// // This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.// // You should have received a copy of the GNU General Public License// along with this program; see the file COPYING.txt. If not, see// <http://www.gnu.org/licenses/>// -----------------------------------------------------------------------?><div class="plugin_event_list"> <?php if (isset($events[0])){ if (isset($events[0]['error_txt'])) { ?> <p> <?php echo $events[0]['error_txt'];?><br /> </p> <?php } else { ?> <ul> <?php foreach ($events[0] as $keyg => $s): $link_css = ""; if (isset($_REQUEST['event_id']) && $_REQUEST['event_id'] == $s['event_id']) { $link_css = " class=\"highlight\""; } ?> <li><a href="<?php echo $s['link'];?>"<?php echo $link_css;?>><?php echo $s['event_title']?></a><br /> <?php echo $s['event_body']?></li> <?php endforeach; ?> </ul> <?php if (!isset($limit)) { $url = 'index.php?' . http_build_query($_GET); echo paging($total_nr_of_rows, $core_config['display']['max_list_rows'], $url); } ?> <?php } unset($events[0]); ?> <?php if (isset($_SESSION['connection_permission']) && checkPermission('event', 'add_event', $_SESSION['connection_permission']) && isset($event_webpagename)) { ?> <p class="list_add"> <a href="index.php?ws=<?php echo $_REQUEST['ws']; ?>&t=edit_event&wp=<?php echo $webspace['webpage_id']; ?>&wpn=<?php echo $event_webpagename;?>&c=event"><?php echo $lang['href_add_event'];?></a> </p> <?php }?> <?php }?></div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -