Lines Matching refs:getAttribute

1696             $nodeClasses = explode(' ', $node->getAttribute('class') );
1714 explode(' ', $node->getAttribute('class') )
2329 if ( $node->getAttribute('id') != substr($s, 1) )
2366 ? mb_ereg_match($pattern, $node->getAttribute($attr))
2367 : preg_match("@{$pattern}@", $node->getAttribute($attr));
2370 } else if ($node->getAttribute($attr) != $val)
3681 in_array($node->getAttribute('type'),
3683 || !$node->getAttribute('type')
3686 && $node->getAttribute('type') == 'radio';
3688 && $node->getAttribute('type') == 'checkbox';
3690 if ($isInputValue && $attr == 'value' && $oldValue != $node->getAttribute($attr)) {
3729 $oldValue = $node->getAttribute($a);
3744 ? $node->getAttribute($attr)
3786 return $node->getAttribute($attr);
3801 $oldValue = $node->getAttribute($a);
3896 trim($node->getAttribute('class').' '.$className)
3908 $classes = $node->getAttribute('class');
3936 $classes = explode( ' ', $node->getAttribute('class'));
4207 .($node->getAttribute('id')
4208 ? '#'.$node->getAttribute('id'):'')
4209 .($node->getAttribute('class')
4210 ? '.'.join('.', explode(' ', $node->getAttribute('class'))):'')
4211 .($node->getAttribute('name')
4212 ? '[name="'.$node->getAttribute('name').'"]':'')
4213 … .($node->getAttribute('value') && strpos($node->getAttribute('value'), '<'.'?php') === false
4214 … ? '[value="'.substr(str_replace("\n", '', $node->getAttribute('value')), 0, 15).'"]':'')
4215 … .($node->getAttribute('value') && strpos($node->getAttribute('value'), '<'.'?php') !== false
4217 .($node->getAttribute('selected')
4219 .($node->getAttribute('checked')