-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathView.php
127 lines (113 loc) · 2.13 KB
/
View.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
/**
* ArangoDB PHP client: View class
*
* @package ArangoDBClient
* @author Jan Steemann
* @copyright Copyright 2018, ArangoDB GmbH, Cologne, Germany
*
* @since 3.4
*/
namespace ArangoDBClient;
/**
* Value object representing a view
*
* <br>
*
* @package ArangoDBClient
* @since 3.4
*/
class View
{
/**
* The view id (might be NULL for new views)
*
* @var string - view id
*/
protected $_id;
/**
* The view name
*
* @var string - view name
*/
protected $_name;
/**
* View id index
*/
const ENTRY_ID = 'id';
/**
* View name index
*/
const ENTRY_NAME = 'name';
/**
* View type index
*/
const ENTRY_TYPE = 'type';
/**
* Constructs an empty view
*
* @param string $name - name for view
* @param string $type - view type
*
* @since 3.4
*
* @throws \ArangoDBClient\ClientException
*/
public function __construct($name, $type)
{
$this->_name = $name;
$this->_type = $type;
}
/**
* Return the view id
*
* @return string - view id
*/
public function getId()
{
return $this->_id;
}
/**
* Set the view's id
*
* @param string - view id
*
* @return void
*/
public function setId($id)
{
$this->_id = $id;
}
/**
* Return the view name
*
* @return string - view name
*/
public function getName()
{
return $this->_name;
}
/**
* Return the view type
*
* @return string - view type
*/
public function getType()
{
return $this->_type;
}
/**
* Return the view as an array
*
* @return array - view data as an array
*/
public function getAll()
{
return [
self::ENTRY_ID => $this->getId(),
self::ENTRY_NAME => $this->getName(),
self::ENTRY_TYPE => $this->getType(),
];
}
}
class_alias(View::class, '\triagens\ArangoDb\View');