Lines Matching full:echo
138 if ($this->preference['showIntro']) echo p_locale_xhtml('diff');
143 echo '<div id="mediamanager__diff" >';
152 echo '</div>';
165 echo '<div class="diffoptions group">';
179 echo $form->toHTML();
181 echo '</div>'; // .diffoptions
211 echo '<div class="slider" style="max-width: ' . ($rev1Size[0] - 20) . 'px;" ></div>';
214 echo '<div class="imageDiff ' . $type . '">';
215 echo '<div class="image1" style="max-width: ' . $rev1Size[0] . 'px;">';
216 echo '<img src="' . $rev1Src . '" alt="" />';
217 echo '</div>';
218 echo '<div class="image2" style="max-width: ' . $rev1Size[0] . 'px;">';
219 echo '<img src="' . $rev2Src . '" alt="" />';
220 echo '</div>';
221 echo '</div>';
253 echo '<div class="table">';
254 echo '<table>';
255 echo '<tr>';
256 echo '<th>' . $rev1Title . ' ' . $rev1Summary . '</th>';
257 echo '<th>' . $rev2Title . ' ' . $rev2Summary . '</th>';
258 echo '</tr>';
260 echo '<tr class="image">';
261 echo '<td>';
262 echo (new Display(new MediaFile($this->id, $rev1)))->getDetailHtml();
263 echo '</td>';
265 echo '<td>';
266 echo (new Display(new MediaFile($this->id, $rev2)))->getDetailHtml();
267 echo '</td>';
268 echo '</tr>';
270 echo '<tr class="actions">';
271 echo '<td>';
273 echo '</td>';
275 echo '<td>';
277 echo '</td>';
278 echo '</tr>';
293 echo '<tr>';
295 echo '<td>';
297 echo '<dl class="img_tags">';
301 echo '<dt>' . $lang[$tag['tag'][1]] . '</dt>';
302 echo '<dd>';
303 if (!empty($tag['highlighted'])) echo '<strong>';
305 echo dformat($value);
307 echo hsc($value);
309 if (!empty($tag['highlighted'])) echo '</strong>';
310 echo '</dd>';
312 echo '</dl>';
314 echo '</td>';
316 echo '</tr>';
318 echo '</table>';
319 echo '</div>';