PluginProbe
WPBot – ChatBot Conversational Forms / 1.2.0
WPBot – ChatBot Conversational Forms v1.2.0
1.5.0 1.4.8 1.4.7 trunk 0.9.2 0.9.3 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.6 1.1.7 1.1.8 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 All 36 releases
conversational-forms / classes / entry / object.php

object.php in WPBot – ChatBot Conversational Forms 1.2.0, at classes/entry/object.php

22 lines 431 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Base class for object representations of database rows
4 *
5 * @package Caldera_Forms Modified by QuantumCloud
6 * @author Josh Pollock <Josh@CalderaWP.com>
7 * @license GPL-2.0+
8 * @link
9 * @copyright 2016 CalderaWP LLC
10 */
11 abstract class Qcformbuilder_Forms_Entry_Object extends Qcformbuilder_Forms_Object {
12
13
14 /**
15 * @inheritdoc
16 */
17 protected function get_prefix(){
18 return 'entry';
19 }
20
21 }
22