dom_node_id = $dom_node_id; $this->dom_node_name = ($dom_node_name ? $dom_node_name : $dom_node_id); $this->value = today(); $this->required = true; } public function get_display() { global $msg, $charset; $display = " "; return $display; } public function get_dom_node_id() { return $this->dom_node_id; } public function get_dom_node_name() { return $this->dom_node_name; } public function get_value() { return $this->value; } public function is_required() { return $this->required; } public function set_dom_node_id($dom_node_id) { $this->dom_node_id = $dom_node_id; return $this; } public function set_dom_node_name($dom_node_name) { $this->dom_node_name = $dom_node_name; return $this; } public function set_value($value) { $this->value = $value; return $this; } public function set_required($required) { $this->required = $required; return $this; } }