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 5.1.0
No related merge requests found
...@@ -37,6 +37,11 @@ class Tag extends AbstractEntity { ...@@ -37,6 +37,11 @@ class Tag extends AbstractEntity {
*/ */
protected $title = ''; protected $title = '';
/**
* @var int
*/
protected $parent;
/** /**
* @return string * @return string
*/ */
...@@ -51,4 +56,18 @@ class Tag extends AbstractEntity { ...@@ -51,4 +56,18 @@ class Tag extends AbstractEntity {
public function setTitle($title) { public function setTitle($title) {
$this->title = $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 @@ ...@@ -6,7 +6,7 @@
"license": [ "license": [
"GPL-2.0+" "GPL-2.0+"
], ],
"version": "5.0.3", "version": "5.1.0",
"support": { "support": {
}, },
"repositories": [ "repositories": [
......
...@@ -19,7 +19,7 @@ $EM_CONF[$_EXTKEY] = [ ...@@ -19,7 +19,7 @@ $EM_CONF[$_EXTKEY] = [
'modify_tables' => '', 'modify_tables' => '',
'clearCacheOnLoad' => 0, 'clearCacheOnLoad' => 0,
'lockType' => '', 'lockType' => '',
'version' => '5.0.3', 'version' => '5.1.0',
'constraints' => [ 'constraints' => [
'depends' => [ 'depends' => [
'typo3' => '7.6.0-8.7.99', '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