Lines Matching refs:out

46         $out;
47 $out .= $this->getHeader();
48 $out .= $this->getBody();
49 $out .= $this->getFooter();
50 echo $out;
57 $out = '';
58 $out .= "<?xml version='1.0' encoding='UTF-8' ?>";
59 $out .= "<rss version='2.0'>";
60 $out .= "<channel>";
61 $out .= "<title>".$conf['title']." - ".$this->parentId."</title>";
62 $out .= "<language>".$conf['lang']."</language>";
63 $out .= "<description>".$this->getLang('rssDesc')."</description>";
64 $out .= "<link>".$link .wl($this->parentId, array('do' => 'show'))."</link>";
65 return $out;
71 $out;
75 $out .= "<item>";
76 $out .= "<title>".$notice->getName()."</title>";
77 $out .= "<link>".$link .wl($notice->getId(), array('do' => 'show'))."</link>";
78 $out .= "<description>";
79 $out .= $this->getLang('startTime').": ";
81 $out .= date("d.m.Y H:i",$notice->getStartTime());
83 $out .= date("d.m.Y",$notice->getStartTime());
85 $out .= " <br />";
86 $out .= $this->getLang('category').": ".$this->getLang($notice->getCategory());
87 $out .= " <br />";
89 $out .= $this->getLang('endTime').": ";
91 $out .= date("d.m.Y H:i",$notice->getEndTime());
93 $out .= date("d.m.Y",$notice->getEndTime());
95 $out .= " <br />";
98 $out .= $this->getLang('deadline').": ";
99 $out .= date("d.m.Y",$notice->getDeadline());
100 $out .= " <br />";
104 $out .= $this->getLang('place').": ";
105 $out .= $notice->getPlace();
106 $out .= " <br />";
108 $out .= $this->getLang('moreInfo').": <a href='".$link .wl($notice->getId(), array('do' => 'show'))."'>".$notice->getName()."</a>";
110 $out .= "</description>";
111 $out .= "<pubDate>".date(DATE_RFC822,$notice->getStartTime())."</pubDate>";
112 $out .= "</item>";
115 $out .= "<item>";
116 $out .= "<title>".$notice->getName()." Deadline</title>";
117 $out .= "<link>".$link .wl($notice->getId(), array('do' => 'show'))."</link>";
118 $out .= "<description>";
119 $out .= $this->getLang('startTime').": ";
121 $out .= date("d.m.Y H:i",$notice->getStartTime());
123 $out .= date("d.m.Y",$notice->getStartTime());
125 $out .= " <br />";
127 $out .= $this->getLang('deadline').": ";
128 $out .= date("d.m.Y",$notice->getDeadline());
129 $out .= "<br />";
131 $out .= "<a href='".$link .wl($notice->getId(), array('do' => 'show'))."'>".$this->getLang('moreInfo')."</a>";
133 $out .= "</description>";
134 $out .= "<pubDate>".date(DATE_RFC822,$notice->getDeadline())."</pubDate>";
135 $out .= "</item>";
138 return $out;
145 $out;
146 $out .="</channel></rss>";
147 return $out;