-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathRecordLink.php
More file actions
131 lines (116 loc) · 2.87 KB
/
RecordLink.php
File metadata and controls
131 lines (116 loc) · 2.87 KB
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
128
129
130
131
<?php
namespace Cobweb\Linkhandler\Domain\Model;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
/**
* Container for the parts of a linkhandler record reference.
*
* @todo: use that class in all possible places
*
* @package Cobweb\Linkhandler\Domain\Model
*/
class RecordLink
{
/**
* @var string Name of the linkhandler configuration
*/
protected $configurationKey;
/**
* @var string Name of the table being linked to
*/
protected $table;
/**
* @var int Primary key of the record being linked to
*/
protected $id;
/**
* @var string Full record reference in linkhandler syntax, i.e record:key:table:id
*/
protected $recordReference;
public function __construct($recordReference = null)
{
if ($recordReference !== null) {
$this->setRecordReference($recordReference);
}
}
/**
* @return string
*/
public function getConfigurationKey()
{
return $this->configurationKey;
}
/**
* @param string $configurationKey
*/
public function setConfigurationKey($configurationKey)
{
$this->configurationKey = $configurationKey;
}
/**
* @return string
*/
public function getTable()
{
return $this->table;
}
/**
* @param string $table
*/
public function setTable($table)
{
$this->table = $table;
}
/**
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* @param int $id
*/
public function setId($id)
{
$this->id = $id;
}
/**
* @return string
*/
public function getRecordReference()
{
return $this->recordReference;
}
/**
* @param string $recordReference
* @throws \InvalidArgumentException
*/
public function setRecordReference($recordReference)
{
if (empty($recordReference)) {
throw new \InvalidArgumentException('Record reference cannot be empty', 1457367830);
}
if (preg_match('/^record:(\w+):(\w+):(\d+)/', $recordReference, $matches)) {
$this->recordReference = $matches[0];
$this->configurationKey = $matches[1];
$this->table = $matches[2];
$this->id = (int)$matches[3];
} else {
throw new \InvalidArgumentException(
'Expected record reference structure is "record:key:table:id"',
1457367830
);
}
}
}