public function __construct($name, $value)
 {
     parent::__construct();
     $this->set_attribute_str('type', 'hidden');
     $this->set_attribute_str('name', $name);
     #echo __METHOD__ . PHP_EOL; exit;
     #$this->set_attribute_str('value', $value);
     $this->set_value($value);
 }