Open GoogleCodeExporter opened 8 years ago
Add these functions to the Element class
public function setDescription($description) {
$this->description = $description;
}
public function setLabel($label) {
$this->label = $label;
}
public function setType($type) {
$this->attributes['type'] = $type;
}
public function setName($name) {
$this->attributes['name'] = $name;
}
Original comment by info%dav...@gtempaccount.com
on 3 May 2012 at 3:57
Add these functions to the Form class:
public function setDescription($description) {
$this->description = $description;
}
public function setLabel($label) {
$this->label = $label;
}
public function setAction($action) {
$this->attributes['action'] = $action;
}
public function setMethod($method) {
$this->attributes['method'] = $method;
}
public function setId($id) {
$this->attributes['id'] = $id;
}
public function setWidth($width) {
$this->width = $width;
}
Original comment by info%dav...@gtempaccount.com
on 3 May 2012 at 3:57
Original issue reported on code.google.com by
info%dav...@gtempaccount.com
on 3 May 2012 at 3:23