formField->config['prefix'] = '/feeds/'; } /** * {@inheritDoc} * @throws SystemException */ public function render() { $this->prepareVars(); return $this->makePartial('textwithprefix'); } /** * Prepares the form widget view data */ public function prepareVars(): void { $this->vars['name'] = $this->formField->getName(); $this->vars['value'] = $this->getLoadValue(); $this->vars['model'] = $this->model; } }