C:\xampp\htdocs\landing\wp-content\plugins\totalpoll\src\Contracts\Entry\Model.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php

namespace TotalPoll\Contracts\Entry;
defined'ABSPATH' ) && exit();


use 
JsonSerializable;
use 
TotalPollVendors\TotalCore\Contracts\Helpers\Arrayable;

/**
 * Interface Model
 * @package TotalPoll\Contracts\Entry
 */
interface Model extends \ArrayAccessArrayableJsonSerializable {
    
/**
     * Get poll id.
     *
     * @return int
     * @since 1.0.0
     */
    
public function getId();

    
/**
     * Get entry date.
     *
     * @return \DateTime
     * @since 1.0.0
     */
    
public function getDate();

    
/**
     * Get user ID.
     *
     * @return int|null
     * @since 1.0.0
     */
    
public function getUserId();

    
/**
     * Get user.
     *
     * @return \WP_User
     * @since 1.0.0
     */
    
public function getUser();

    
/**
     * Get poll ID.
     *
     * @return int
     * @since 1.0.0
     */
    
public function getPollId();

    
/**
     * Get poll model.
     *
     * @return \TotalPoll\Contracts\Poll\Model
     * @since 1.0.0
     */
    
public function getPoll();

    
/**
     * Get log ID.
     *
     * @return int
     * @since 1.0.0
     */
    
public function getLogId();

    
/**
     * Get log model.
     *
     * @return \TotalPoll\Contracts\Log\Model
     * @since 1.0.0
     */
    
public function getLog();

    
/**
     * Get fields.
     *
     * @return array
     * @since 1.0.0
     */
    
public function getFields();

    
/**
     * Get fields.
     *
     * @return array
     * @since 1.0.0
     */
    
public function getField$name$default null );

    
/**
     * Get details.
     *
     * @return array
     * @since 1.0.0
     */
    
public function getDetails();
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586