Lines Matching refs:R
98 * @param object reference $R - the XHTML renderer
103 function _buildTimeChooser(&$R, &$entries, $now){
120 $R->doc .= '<div class="autoarchive_selector">';
122 $R->listu_open();
123 $R->listitem_open(1);
124 $R->listcontent_open();
125 $R->doc .= $y.'<span>:</span>';
126 $R->listcontent_close();
129 $R->listu_open();
130 $R->listitem_open(2);
131 $R->listcontent_open();
132 if("$y-$m" == $now) $R->doc .= '<span class="cur">';
133 $R->doc .= '<a href="'.wl($ID,array('blogarchive'=>"$y-$m")).'" class="wikilink1" title="'.$this->_posts($cnt,$m,$y).'">';
134 $R->doc .= $this->getLang('month_'.$m);
135 $R->doc .= '</a>';
137 $R->doc .= '</span>';
140 $R->listcontent_close();
141 $R->listitem_close();
142 $R->listu_close();
144 $R->listitem_close();
145 $R->listu_close();
147 $R->doc .='</div>';