应该在 MVC、控制器或模型中的何处使用表单助手创建表单?

where should create form with form helper in MVC, controller or model?

应该在 MVC、控制器或模型中的何处使用表单助手创建表单?

我的意思是我应该把这些代码放在哪里:

$form = $this->get('formhelper');
$form->add_input('fname', ['type'=>'text']);
$form->add_input('lname', ['type'=>'text']);

绝对是控制者。模型是包含数据库相关的代码。