# smart-forms/trunk/php_classes/save/pre_insert_entry.php

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

- Page: https://pluginprobe.com/plugins/smart-forms/trunk/code/php_classes/save/pre_insert_entry.php
- Raw: https://pluginprobe.com/plugins/smart-forms/trunk/raw/php_classes/save/pre_insert_entry.php
- Modified: 2015-02-20T02:15:56+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/save/pre_insert_entry.php#L10-L20`.

```php
<?php
class PreInsertEntry extends InsertEntryBase{

    Public $ContinueInsertion=true;

    public function __construct(&$formId,&$formEntryData,&$formOptions,&$elementOptions,&$additionalData)
    {
        parent::__construct($formId,$formEntryData,$formOptions,$elementOptions,$additionalData);
    }






}
```
