Lines Matching refs:ret
17 $ret = '';
19 $ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer'));
20 $ret .= $this->start('table');
22 $ret .= $this->element('caption', 'Properties ($info)');
24 $ret .= $this->start('thead');
25 $ret .= $this->start('tr');
26 $ret .= $this->element('th', 'Property', array('class' => 'heavy'));
27 … $ret .= $this->element('th', 'Definition', array('class' => 'heavy', 'style' => 'width:auto;'));
28 $ret .= $this->end('tr');
29 $ret .= $this->end('thead');
34 $ret .= $this->row($property, $name);
37 $ret .= $this->end('table');
38 $ret .= $this->end('div');
40 return $ret;