summaryrefslogtreecommitdiff
path: root/channels.ecpp
blob: dd9fef44175f1ecc48b7568f46b43b9e44736184 (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
<%pre>
#include <boost/lexical_cast.hpp>
#include <vdr/plugin.h>
#include <vdr/channels.h>
</%pre>
<%args>
vorname;
nachname;
alter;
</%args>
<html>
 <head>
  <title>ecpp-application testproject</title>
 </head>
 <body>
<{

	for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel)) {
		if (!channel->GroupSep() && *channel->Name()) {
}>
	<$ channel->Name() $><a href="schedule.html?channel=<$ channel->Number() $>">Programm</a><br/>
<{
         }
      }
   

}>
 </body>
</html>