Campaign.php
10 months ago
Campaign_Landing_Page.php
9 months ago
Campaign_UTM_Campaign.php
9 months ago
Campaign_UTM_Medium.php
9 months ago
Campaign_UTM_Source.php
9 months ago
ClickWhale_Link_Page.php
1 year ago
Current_Traffic.php
2 years ago
Device.php
10 months ago
Form.php
1 year ago
Geo.php
10 months ago
Journey.php
5 months ago
Link.php
8 months ago
Link_Pattern.php
10 months ago
Model.php
6 months ago
Page.php
10 months ago
Page_Author_Archive.php
2 years ago
Page_Date_Archive.php
2 years ago
Page_Home.php
2 years ago
Page_Not_Found.php
1 year ago
Page_Post_Type_Archive.php
1 year ago
Page_Search.php
2 years ago
Page_Singular.php
1 year ago
Page_Term_Archive.php
2 years ago
Page_Virtual.php
1 year ago
Referrer.php
6 months ago
Referrer_Type.php
9 months ago
Universal_Model_Columns.php
1 year ago
Visitor.php
9 months ago
Form.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Models; |
| 4 | |
| 5 | /** @internal */ |
| 6 | class Form |
| 7 | { |
| 8 | protected $row; |
| 9 | protected $form_title; |
| 10 | protected $submissions; |
| 11 | public function __construct($row) |
| 12 | { |
| 13 | $this->row = $row; |
| 14 | $this->form_title = $row->form_title; |
| 15 | $this->submissions = \intval($row->submissions); |
| 16 | } |
| 17 | public function form_title() : string |
| 18 | { |
| 19 | return $this->form_title; |
| 20 | } |
| 21 | public function submissions() : int |
| 22 | { |
| 23 | return $this->submissions; |
| 24 | } |
| 25 | } |
| 26 |