All pastes #2063989 Raw Edit

code

public text v1 · immutable
#2063989 ·published 2011-05-19 02:08 UTC
rendered paste body
<?php

class Textfield extends Component {

	function initialize(&$controller, &$request, &$user) {
		$this->setValueByRef($request->getParameter($this->name));
	}

	function render(&$controller, &$request, &$user) {
		?>
			<input name="<?= $this->name ?>" value="<?= $this->value ?>" <?= $this->htmlAttributes ?>/>
		<?php
	}
}

?>