update 2023-07-22 11:43:42
This commit is contained in:
parent
47d0215d74
commit
063b9d3c9d
@ -136,7 +136,7 @@ final class Tagged
|
|||||||
}
|
}
|
||||||
// create a new tag
|
// create a new tag
|
||||||
elseif ($this->create($linker, $translation, $book, $chapter, $verse, $tag)
|
elseif ($this->create($linker, $translation, $book, $chapter, $verse, $tag)
|
||||||
&& ($_tag = $this->get($linker, $translation, $book, $chapter, $verse, $tag)) !== null)
|
&& ($_tag = $this->get($linker, $book, $chapter, $verse, $tag)) !== null)
|
||||||
{
|
{
|
||||||
$_tag->success = Text::_('COM_GETBIBLE_THE_VERSE_WAS_SUCCESSFULLY_TAGGED');
|
$_tag->success = Text::_('COM_GETBIBLE_THE_VERSE_WAS_SUCCESSFULLY_TAGGED');
|
||||||
return (array) $_tag;
|
return (array) $_tag;
|
||||||
@ -167,14 +167,11 @@ final class Tagged
|
|||||||
}
|
}
|
||||||
|
|
||||||
// make sure the linker has access to delete this tag
|
// make sure the linker has access to delete this tag
|
||||||
if (($id = $this->load->value(['linker' => $linker, 'guid' => $tag], 'id', 'tagged_verse')) !== null && $id > 0)
|
if (($id = $this->load->value(['linker' => $linker, 'guid' => $tag], 'id', 'tagged_verse')) !== null && $id > 0
|
||||||
|
&& $this->update->value(-2, 'published', $id, 'id', 'tagged_verse'))
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'success' => Text::_('COM_GETBIBLE_THE_TAG_WAS_SUCCESSFULLY_REMOVED_FROM_THE_VERSE'),
|
'success' => Text::_('COM_GETBIBLE_THE_TAG_WAS_SUCCESSFULLY_REMOVED_FROM_THE_VERSE')
|
||||||
'what' => $this->update->value(-2, 'published', $id, 'id', 'tagged_verse'),
|
|
||||||
'id' => $id,
|
|
||||||
'guid' => $tag,
|
|
||||||
'linker' => $linker
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -212,6 +209,14 @@ final class Tagged
|
|||||||
'tag' => $tag
|
'tag' => $tag
|
||||||
], 'tagged_verse')) !== null)
|
], 'tagged_verse')) !== null)
|
||||||
{
|
{
|
||||||
|
$_tag->name = $this->load->value([
|
||||||
|
'guid' => $tag
|
||||||
|
], 'name', 'tag');
|
||||||
|
|
||||||
|
$_tag->description = $this->load->value([
|
||||||
|
'guid' => $tag
|
||||||
|
], 'description', 'tag');
|
||||||
|
|
||||||
return $_tag;
|
return $_tag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@
|
|||||||
}
|
}
|
||||||
// create a new tag
|
// create a new tag
|
||||||
elseif ($this->create($linker, $translation, $book, $chapter, $verse, $tag)
|
elseif ($this->create($linker, $translation, $book, $chapter, $verse, $tag)
|
||||||
&& ($_tag = $this->get($linker, $translation, $book, $chapter, $verse, $tag)) !== null)
|
&& ($_tag = $this->get($linker, $book, $chapter, $verse, $tag)) !== null)
|
||||||
{
|
{
|
||||||
$_tag->success = Text::_('The verse was successfully tagged.');
|
$_tag->success = Text::_('The verse was successfully tagged.');
|
||||||
return (array) $_tag;
|
return (array) $_tag;
|
||||||
@ -138,14 +138,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// make sure the linker has access to delete this tag
|
// make sure the linker has access to delete this tag
|
||||||
if (($id = $this->load->value(['linker' => $linker, 'guid' => $tag], 'id', 'tagged_verse')) !== null && $id > 0)
|
if (($id = $this->load->value(['linker' => $linker, 'guid' => $tag], 'id', 'tagged_verse')) !== null && $id > 0
|
||||||
|
&& $this->update->value(-2, 'published', $id, 'id', 'tagged_verse'))
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'success' => Text::_('The tag was successfully removed from the verse.'),
|
'success' => Text::_('The tag was successfully removed from the verse.')
|
||||||
'what' => $this->update->value(-2, 'published', $id, 'id', 'tagged_verse'),
|
|
||||||
'id' => $id,
|
|
||||||
'guid' => $tag,
|
|
||||||
'linker' => $linker
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -183,6 +180,14 @@
|
|||||||
'tag' => $tag
|
'tag' => $tag
|
||||||
], 'tagged_verse')) !== null)
|
], 'tagged_verse')) !== null)
|
||||||
{
|
{
|
||||||
|
$_tag->name = $this->load->value([
|
||||||
|
'guid' => $tag
|
||||||
|
], 'name', 'tag');
|
||||||
|
|
||||||
|
$_tag->description = $this->load->value([
|
||||||
|
'guid' => $tag
|
||||||
|
], 'description', 'tag');
|
||||||
|
|
||||||
return $_tag;
|
return $_tag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user