From 4f053ffa35eb8cf3e18d9d2451f1d5ebd5184a84 Mon Sep 17 00:00:00 2001 From: aB0t Date: Wed, 28 Jun 2023 04:29:56 +0200 Subject: [PATCH] update 2023-06-28 04:29:56 --- .../code.php | 108 +++++++++++++++--- 1 file changed, 91 insertions(+), 17 deletions(-) diff --git a/src/ff8d5fdb-2d1f-4178-bd18-a43b8efd1068/code.php b/src/ff8d5fdb-2d1f-4178-bd18-a43b8efd1068/code.php index 29b0fa0..20af6aa 100644 --- a/src/ff8d5fdb-2d1f-4178-bd18-a43b8efd1068/code.php +++ b/src/ff8d5fdb-2d1f-4178-bd18-a43b8efd1068/code.php @@ -30,12 +30,32 @@ class Table extends BaseTable implements Tableinterface * @since 2.0.1 **/ protected array $tables = [ - 'note' => [ + 'linker' => [ + 'name' => [ + 'name' => 'name', + 'label' => 'COM_GETBIBLE_LINKER_NAME_LABEL', + 'type' => 'text', + 'title' => true, + 'list' => 'linkers', + 'store' => NULL, + 'tab_name' => 'Details', + ], 'guid' => [ 'name' => 'guid', - 'label' => 'COM_GETBIBLE_NOTE_GUID_LABEL', + 'label' => 'COM_GETBIBLE_LINKER_GUID_LABEL', 'type' => 'text', 'title' => false, + 'list' => 'linkers', + 'store' => NULL, + 'tab_name' => 'publishing', + ], + ], + 'note' => [ + 'linker' => [ + 'name' => 'linker', + 'label' => 'COM_GETBIBLE_NOTE_LINKER_LABEL', + 'type' => 'linkers', + 'title' => false, 'list' => 'notes', 'store' => NULL, 'tab_name' => 'Details', @@ -67,6 +87,15 @@ class Table extends BaseTable implements Tableinterface 'store' => NULL, 'tab_name' => 'Details', ], + 'guid' => [ + 'name' => 'guid', + 'label' => 'COM_GETBIBLE_NOTE_GUID_LABEL', + 'type' => 'text', + 'title' => false, + 'list' => 'notes', + 'store' => NULL, + 'tab_name' => 'publishing', + ], 'note' => [ 'name' => 'note', 'label' => 'COM_GETBIBLE_NOTE_NOTE_LABEL', @@ -78,15 +107,24 @@ class Table extends BaseTable implements Tableinterface ], ], 'tag' => [ - 'title' => [ - 'name' => 'title', - 'label' => 'COM_GETBIBLE_TAG_TITLE_LABEL', + 'name' => [ + 'name' => 'name', + 'label' => 'COM_GETBIBLE_TAG_NAME_LABEL', 'type' => 'text', 'title' => true, 'list' => 'tags', 'store' => NULL, 'tab_name' => 'Details', ], + 'linker' => [ + 'name' => 'linker', + 'label' => 'COM_GETBIBLE_TAG_LINKER_LABEL', + 'type' => 'linkers', + 'title' => false, + 'list' => 'tags', + 'store' => NULL, + 'tab_name' => 'Details', + ], 'guid' => [ 'name' => 'guid', 'label' => 'COM_GETBIBLE_TAG_GUID_LABEL', @@ -94,12 +132,12 @@ class Table extends BaseTable implements Tableinterface 'title' => false, 'list' => 'tags', 'store' => NULL, - 'tab_name' => 'Details', + 'tab_name' => 'publishing', ], - 'alias' => [ - 'name' => 'alias', - 'label' => 'COM_GETBIBLE_TAG_ALIAS_LABEL', - 'type' => 'text', + 'description' => [ + 'name' => 'description', + 'label' => 'COM_GETBIBLE_TAG_DESCRIPTION_LABEL', + 'type' => 'textarea', 'title' => false, 'list' => 'tags', 'store' => NULL, @@ -107,22 +145,58 @@ class Table extends BaseTable implements Tableinterface ], ], 'taged_verse' => [ - 'title' => [ - 'name' => 'title', - 'label' => 'COM_GETBIBLE_TAGED_VERSE_TITLE_LABEL', - 'type' => 'text', + 'abbreviation' => [ + 'name' => 'abbreviation', + 'label' => 'COM_GETBIBLE_TAGED_VERSE_ABBREVIATION_LABEL', + 'type' => 'translations', 'title' => true, 'list' => 'taged_verses', 'store' => NULL, 'tab_name' => 'Details', ], - 'alias' => [ - 'name' => 'alias', - 'label' => 'COM_GETBIBLE_TAGED_VERSE_ALIAS_LABEL', + 'tag' => [ + 'name' => 'tag', + 'label' => 'COM_GETBIBLE_TAGED_VERSE_TAG_LABEL', + 'type' => 'tagers', + 'title' => false, + 'list' => 'taged_verses', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'guid' => [ + 'name' => 'guid', + 'label' => 'COM_GETBIBLE_TAGED_VERSE_GUID_LABEL', 'type' => 'text', 'title' => false, 'list' => 'taged_verses', 'store' => NULL, + 'tab_name' => 'publishing', + ], + 'verse' => [ + 'name' => 'verse', + 'label' => 'COM_GETBIBLE_TAGED_VERSE_VERSE_LABEL', + 'type' => 'number', + 'title' => false, + 'list' => 'taged_verses', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'chapter' => [ + 'name' => 'chapter', + 'label' => 'COM_GETBIBLE_TAGED_VERSE_CHAPTER_LABEL', + 'type' => 'number', + 'title' => false, + 'list' => 'taged_verses', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'book_nr' => [ + 'name' => 'book_nr', + 'label' => 'COM_GETBIBLE_TAGED_VERSE_BOOK_NR_LABEL', + 'type' => 'number', + 'title' => false, + 'list' => 'taged_verses', + 'store' => NULL, 'tab_name' => 'Details', ], ],