1 2 3 4 5 6 7 8 9 10 11 12 13
<?php namespace Studip\Forms; class InputRow extends Part { public function render() { $template = $GLOBALS['template_factory']->open('forms/input_row'); $template->parts = $this->parts; return $template->render(); } }