config = &$config; $this->name = $name; $this->value = $value; $this->description = $description; $this->required = $required; $this->type = $type; $this->display = $display; $class = get_class(); $this->postName = "{$class}_{$this->name}"; } function render() { return(""); } function save_object() { } function getValue() { return($this->value); } function getName() { return($this->name); } function setValue($value) { $this->value = $value; } } ?>