4
0

update 2023-06-28 04:29:56

This commit is contained in:
Robot 2023-06-28 04:29:56 +02:00
parent 6d53266b9e
commit 4f053ffa35
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95

View File

@ -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',
],
],