Lines Matching refs:_dom
16 private $_dom = null; variable in action_plugin_sphinxsearchwas
50 $this->_dom = new DOMDocument('1.0', 'UTF-8');
51 $root = $this->_dom->createElement('div');
52 $this->_dom->appendChild($root);
54 $h1 = $this->_dom->createElement('h1', "Found $total matches for \"" . hsc($query) . "\"");
57 $container = $this->_dom->createElement('div');
61 $sidebar = $this->_dom->createElement('div');
68 $h2 = $this->_dom->createElement('h2', "Matching keywords");
71 $list = $this->_dom->createElement('div');
80 echo $this->_dom->saveHTML($root);
84 $div = $this->_dom->createElement('div');
86 $a = $this->_dom->createElement('a', hsc($row['titleTextExcerpt']));
91 $snippet = $this->_dom->createElement('div');
96 $nmsp = $this->_dom->createElement('span');
99 if ($i > 0) $nmsp->appendChild($this->_dom->createTextNode(' : '));
100 $na = $this->_dom->createElement('a', hsc($n['title']));
109 $nav = $this->_dom->createElement('div');
127 $a = $this->_dom->createElement('a', $label);
141 $node->appendChild($this->_dom->importNode($child, true));