-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathGridInterface.php
109 lines (93 loc) · 1.87 KB
/
GridInterface.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
103
104
105
106
107
108
109
<?php
/**
* Grid GridInterface.
* @category Webkul
* @package Webkul_Grid
* @author Webkul
* @copyright Copyright (c) 2010-2017 Webkul Software Private Limited (https://webkul.com)
* @license https://store.webkul.com/license.html
*/
namespace Webkul\Grid\Api\Data;
interface GridInterface
{
/**
* Constants for keys of data array. Identical to the name of the getter in snake case.
*/
const ENTITY_ID = 'entity_id';
const TITLE = 'title';
const CONTENT = 'content';
const PUBLISH_DATE = 'publish_date';
const IS_ACTIVE = 'is_active';
const UPDATE_TIME = 'update_time';
const CREATED_AT = 'created_at';
/**
* Get EntityId.
*
* @return int
*/
public function getEntityId();
/**
* Set EntityId.
*/
public function setEntityId($entityId);
/**
* Get Title.
*
* @return varchar
*/
public function getTitle();
/**
* Set Title.
*/
public function setTitle($title);
/**
* Get Content.
*
* @return varchar
*/
public function getContent();
/**
* Set Content.
*/
public function setContent($content);
/**
* Get Publish Date.
*
* @return varchar
*/
public function getPublishDate();
/**
* Set PublishDate.
*/
public function setPublishDate($publishDate);
/**
* Get IsActive.
*
* @return varchar
*/
public function getIsActive();
/**
* Set StartingPrice.
*/
public function setIsActive($isActive);
/**
* Get UpdateTime.
*
* @return varchar
*/
public function getUpdateTime();
/**
* Set UpdateTime.
*/
public function setUpdateTime($updateTime);
/**
* Get CreatedAt.
*
* @return varchar
*/
public function getCreatedAt();
/**
* Set CreatedAt.
*/
public function setCreatedAt($createdAt);
}