# smart-forms/trunk/php_classes/api/SFApiActions.php

Smart Forms – when you need more than just a contact form, version trunk. 21 lines.

- Page: https://pluginprobe.com/plugins/smart-forms/trunk/code/php_classes/api/SFApiActions.php
- Raw: https://pluginprobe.com/plugins/smart-forms/trunk/raw/php_classes/api/SFApiActions.php
- Modified: 2021-08-04T00:33:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/smart-forms/trunk/code/php_classes/api/SFApiActions.php#L10-L20`.

```php
<?php

/**
 * Created by PhpStorm.
 * User: Edgar
 * Date: 9/11/2016
 * Time: 8:17 AM
 */
class SFApiActions
{
    public function register_hooks()
    {
        add_action('smart_formsa_include_systemjs',array($this,'include_systemjs'));
    }

    public function include_systemjs(){
        $htmlToPrint= apply_filters('smart_formsf_include_systemjs','');
        //This html was escaped in the filter
        echo $htmlToPrint;
    }
}
```
