Exemplo n.º 1
0
 /**
  * Creates a new instance of the {@link XOAD_HTML_DOM_ElementsByTagName} class.
  *
  * @param	string	$tagName	String that holds the tag name of the elements.
  *
  * @access	public
  *
  */
 public function __construct($tagName)
 {
     parent::__construct();
     $this->tagName = $tagName;
     $this->skipKeys[] = 'tagName';
 }
Exemplo n.º 2
0
 public function __construct($query)
 {
     parent::__construct();
     $this->query = $query;
     $this->skipKeys[] = 'query';
 }
Exemplo n.º 3
0
 /**
  * Creates a new instance of the {@link XOAD_HTML_DOM_ElementsByName} class.
  *
  * @param	string	$name	String that holds the name of the elements.
  *
  * @access	public
  *
  */
 public function __construct($name)
 {
     parent::__construct();
     $this->name = $name;
     $this->skipKeys[] = 'name';
 }
Exemplo n.º 4
0
 /**
  * Creates a new instance of the {@link XOAD_HTML_DOM_ElementById} class.
  *
  * @param	string	$id		String that holds the ID of the element.
  *
  * @access	public
  *
  */
 public function __construct($id)
 {
     parent::__construct();
     $this->id = $id;
     $this->skipKeys[] = 'id';
 }