Lines Matching refs:entry
131 foreach ($entries as $entry) {
133 // entry in the right date range?
134 if (($start > $entry['date']) || ($entry['date'] >= $end)) continue;
136 $pagelist->addPage($entry);
149 foreach ($entries as $entry) {
151 // entry in the right date range?
152 if (($start > $entry['date']) || ($entry['date'] >= $end)) continue;
154 $renderer->meta['relation']['references'][$entry['id']] = true;
155 $renderer->meta['plugin_blog']['archive_pages'][] = $entry['id'];
173 foreach ($entries as $entry) {
174 // entry in the right date range?
175 if (($start > $entry['date']) || ($entry['date'] >= $end)) continue;
177 if ($current_year != date('o',$entry['date'])) {
182 $current_year = date('o',$entry['date']);
186 if ($current_month != date('m',$entry['date'])) {
190 $current_month = date('m',$entry['date']);
191 $list .= '<h3 id="m' . date('o-m',$entry['date']) . '">' . $this->getLang('month_' . $current_month) . '</h3><ul>' . DOKU_LF;
194 $histogram_count[date('o-m',$entry['date'])] += 1;
195 if ($histogram_higher < $histogram_count[date('o-m',$entry['date'])]) {
196 $histogram_higher = $histogram_count[date('o-m',$entry['date'])];
198 $list .= '<li>' . date('d',$entry['date']) . ' - <a href="' . wl($entry['id']) . '" title="' . $entry['id'] . '">' . $entry['title'] . '</a></li>' . DOKU_LF;
233 $alt .= $this->getLang('entry');