entry.php in WPBot – ChatBot Conversational Forms 1.2.0, at classes/entry/entry.php
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Object representation of an entry (basic info, no values) - wfb_form_entries |
| 5 | * |
| 6 | * @package Caldera_Forms Modified by QuantumCloud |
| 7 | * @author Josh Pollock <Josh@CalderaWP.com> |
| 8 | * @license GPL-2.0+ |
| 9 | * @link |
| 10 | * @copyright 2016 CalderaWP LLC |
| 11 | */ |
| 12 | class Qcformbuilder_Forms_Entry_Entry extends Qcformbuilder_Forms_Entry_Object { |
| 13 | |
| 14 | /** @var string */ |
| 15 | protected $id; |
| 16 | |
| 17 | /** @var string */ |
| 18 | protected $form_id; |
| 19 | |
| 20 | /** @var string */ |
| 21 | protected $user_id; |
| 22 | |
| 23 | /** @var string */ |
| 24 | protected $datestamp; |
| 25 | |
| 26 | /** @var string */ |
| 27 | protected $status; |
| 28 | |
| 29 | } |
| 30 |