| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Declare common actions/filters/shortcodes |
| 5 |
*/ |
| 6 |
|
| 7 |
/** |
| 8 |
* @var $app \FluentForm\Framework\Foundation\Application |
| 9 |
*/ |
| 10 |
|
| 11 |
$component = new \FluentForm\App\Modules\Component\Component($app); |
| 12 |
$component->addFluentformSubmissionInsertedFilter(); |
| 13 |
$component->addIsRenderableFilter(); |
| 14 |
|
| 15 |
$app->addAction( 'init', function () use ($app) { |
| 16 |
(new \FluentForm\App\Modules\ProcessExteriorModule())->handleExteriorPages(); |
| 17 |
}); |