Skip to content
Snippets Groups Projects
Commit 62b81c43 authored by Philipp Nowinski's avatar Philipp Nowinski
Browse files

[FEATURE] include parent field in tag record

parent ebb57f17
No related branches found
Tags 3.5.1
No related merge requests found
......@@ -37,6 +37,11 @@ class Tag extends AbstractEntity {
*/
protected $title = '';
/**
* @var int
*/
protected $parent;
/**
* @return string
*/
......@@ -51,4 +56,18 @@ class Tag extends AbstractEntity {
public function setTitle($title) {
$this->title = $title;
}
/**
* @return int
*/
public function getParent() {
return $this->parent;
}
/**
* @param int $parent
*/
public function setParent($parent) {
$this->parent = $parent;
}
}
......@@ -6,7 +6,7 @@
"license": [
"GPL-2.0+"
],
"version": "5.0.3",
"version": "5.1.0",
"support": {
},
"repositories": [
......
......@@ -19,7 +19,7 @@ $EM_CONF[$_EXTKEY] = [
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'lockType' => '',
'version' => '5.0.3',
'version' => '5.1.0',
'constraints' => [
'depends' => [
'typo3' => '7.6.0-8.7.99',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment