summaryrefslogtreecommitdiff
path: root/pages/event_widget.ecpp
blob: eb97755157636b7d4f79c8a4b187b483ac69243b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<%pre>
#include <vdr/plugin.h>
#include <vdr/channels.h>
#include <vdr/epg.h>
#include <vdr/config.h>
#include <vdr/i18n.h>
#include "tools.h"

using namespace vdrlive;

</%pre>
<%args>
title;
short_description;
description;
channel_name;
</%args>

			<table class="event" cellpadding="0" cellspacing="0">
				<tr><td class="station" colspan="2"><$ channel_name $></td></tr>
				<tr>
					<td class="tools">
					&nbsp;
					</td>
					<td class="content">
						<div class="title"><$ title $></div>
						<div class="short"><$ short_description $></div>
						<div class="description"><$  description $></div>
					</td>
				</tr>
			</table>