<?php echo $widget->output('Form'); ?>
// Регистрация сервиса widgetView
$di->set('widgetView', [
'className' => '\Phalcon\Mvc\View',
'calls' => [
['method' => 'setViewsDir', 'arguments' => [
['type' => 'parameter', 'value' => '../app/widgets'],
]],
['method' => 'registerEngines', 'arguments' => [
['type' => 'parameter', 'value' => [
'.phtml' => 'Phalcon\Mvc\View\Engine\Php',
'.volt' => $voltService,
]],
]],
],
]);