update 2023-06-28 02:29:54
This commit is contained in:
parent
884c843261
commit
6d53266b9e
@ -30,6 +30,102 @@ class Table extends BaseTable implements Tableinterface
|
|||||||
* @since 2.0.1
|
* @since 2.0.1
|
||||||
**/
|
**/
|
||||||
protected array $tables = [
|
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' => [
|
||||||
'translation' => [
|
'translation' => [
|
||||||
'name' => 'translation',
|
'name' => 'translation',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user