form = $form;
$this->name = $name;
$this->value = $value;
$this->id = $id ? $id : $this->name;
$this->classesList = $classesList;
}
/**
* put your comment there...
*
*/
public function getForm() {
return $this->form;
}
/**
* put your comment there...
*
*/
public function getId() {
return $this->id;
}
/**
* put your comment there...
*
*/
public function getName() {
return $this->name;
}
/**
* put your comment there...
*
*/
public function getValue() {
return $this->value;
}
} // End class.