14 lines
269 B
PHP
14 lines
269 B
PHP
<?php
|
|
|
|
namespace Helpers;
|
|
|
|
class Form
|
|
{
|
|
public static function parseForm()
|
|
{
|
|
return function ($template, $context, $args, $source) {
|
|
return gravity_form($context->get($args), true, true, false, false, true, false, false);
|
|
};
|
|
}
|
|
}
|