diff --git a/src/ff8d5fdb-2d1f-4178-bd18-a43b8efd1068/code.php b/src/ff8d5fdb-2d1f-4178-bd18-a43b8efd1068/code.php index a70d63c..29b0fa0 100644 --- a/src/ff8d5fdb-2d1f-4178-bd18-a43b8efd1068/code.php +++ b/src/ff8d5fdb-2d1f-4178-bd18-a43b8efd1068/code.php @@ -30,6 +30,102 @@ class Table extends BaseTable implements Tableinterface * @since 2.0.1 **/ protected array $tables = [ + 'note' => [ + 'guid' => [ + 'name' => 'guid', + 'label' => 'COM_GETBIBLE_NOTE_GUID_LABEL', + 'type' => 'text', + 'title' => false, + 'list' => 'notes', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'book_nr' => [ + 'name' => 'book_nr', + 'label' => 'COM_GETBIBLE_NOTE_BOOK_NR_LABEL', + 'type' => 'number', + 'title' => false, + 'list' => 'notes', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'chapter' => [ + 'name' => 'chapter', + 'label' => 'COM_GETBIBLE_NOTE_CHAPTER_LABEL', + 'type' => 'number', + 'title' => false, + 'list' => 'notes', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'verse' => [ + 'name' => 'verse', + 'label' => 'COM_GETBIBLE_NOTE_VERSE_LABEL', + 'type' => 'number', + 'title' => false, + 'list' => 'notes', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'note' => [ + 'name' => 'note', + 'label' => 'COM_GETBIBLE_NOTE_NOTE_LABEL', + 'type' => 'textarea', + 'title' => false, + 'list' => 'notes', + 'store' => NULL, + 'tab_name' => 'Details', + ], + ], + 'tag' => [ + 'title' => [ + 'name' => 'title', + 'label' => 'COM_GETBIBLE_TAG_TITLE_LABEL', + 'type' => 'text', + 'title' => true, + 'list' => 'tags', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'guid' => [ + 'name' => 'guid', + 'label' => 'COM_GETBIBLE_TAG_GUID_LABEL', + 'type' => 'text', + 'title' => false, + 'list' => 'tags', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'alias' => [ + 'name' => 'alias', + 'label' => 'COM_GETBIBLE_TAG_ALIAS_LABEL', + 'type' => 'text', + 'title' => false, + 'list' => 'tags', + 'store' => NULL, + 'tab_name' => 'Details', + ], + ], + 'taged_verse' => [ + 'title' => [ + 'name' => 'title', + 'label' => 'COM_GETBIBLE_TAGED_VERSE_TITLE_LABEL', + 'type' => 'text', + 'title' => true, + 'list' => 'taged_verses', + 'store' => NULL, + 'tab_name' => 'Details', + ], + 'alias' => [ + 'name' => 'alias', + 'label' => 'COM_GETBIBLE_TAGED_VERSE_ALIAS_LABEL', + 'type' => 'text', + 'title' => false, + 'list' => 'taged_verses', + 'store' => NULL, + 'tab_name' => 'Details', + ], + ], 'translation' => [ 'translation' => [ 'name' => 'translation',