{"id":30115649,"url":"https://github.com/metamodels/attribute_tablemulti","last_synced_at":"2026-02-22T09:40:59.609Z","repository":{"id":45129502,"uuid":"184881449","full_name":"MetaModels/attribute_tablemulti","owner":"MetaModels","description":"The table multi attribute.","archived":false,"fork":false,"pushed_at":"2025-03-22T20:01:24.000Z","size":5205,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-07-29T22:09:27.114Z","etag":null,"topics":["attribute","contao","metamodel","metamodels","php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MetaModels.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-05-04T10:33:22.000Z","updated_at":"2025-03-22T20:01:31.000Z","dependencies_parsed_at":"2023-02-10T06:30:21.122Z","dependency_job_id":null,"html_url":"https://github.com/MetaModels/attribute_tablemulti","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/MetaModels/attribute_tablemulti","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetaModels%2Fattribute_tablemulti","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetaModels%2Fattribute_tablemulti/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetaModels%2Fattribute_tablemulti/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetaModels%2Fattribute_tablemulti/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MetaModels","download_url":"https://codeload.github.com/MetaModels/attribute_tablemulti/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetaModels%2Fattribute_tablemulti/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269699541,"owners_count":24461215,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["attribute","contao","metamodel","metamodels","php"],"created_at":"2025-08-10T08:51:25.948Z","updated_at":"2026-02-22T09:40:59.522Z","avatar_url":"https://github.com/MetaModels.png","language":"PHP","readme":"[![Build Status](https://github.com/MetaModels/attribute_tablemulti/actions/workflows/diagnostics.yml/badge.svg)](https://github.com/MetaModels/attribute_tablemulti/actions)\n[![Latest Version tagged](http://img.shields.io/github/tag/MetaModels/attribute_tablemulti.svg)](https://github.com/MetaModels/attribute_tablemulti/tags)\n[![Latest Version on Packagist](http://img.shields.io/packagist/v/MetaModels/attribute_tablemulti.svg)](https://packagist.org/packages/MetaModels/attribute_tablemulti)\n[![Installations via composer per month](http://img.shields.io/packagist/dm/MetaModels/attribute_tablemulti.svg)](https://packagist.org/packages/MetaModels/attribute_tablemulti)\n\n# The table multi attribute\n\nThe table multi attribute for MetaModels.\n\nWith this attribute you are able to create complex table structures with the\n[MultiColumnWizard]( https://github.com/menatwork/contao-multicolumnwizard-bundle).\n\n\n## Original idea by Byteworks:\n\n- [Ronny Binder](mailto:rb@bytworks.ch)\n- [Michael Bischof](mailto:mb@byteworks.ch)\n\n\n## Configure the table multi attribute\n\nCreate the configuration in e.g. the contao/config/config.php or src/Resources/contao/config/config.php or somewhere\nelse where the config is loaded and write something like this:\n\nThe `mm_test` is the name of the table and the `multi_test` is the name of the field.\n\n```php\n$GLOBALS['TL_CONFIG']['metamodelsattribute_multi']['mm_test']['multi_test'] = [\n    'minCount'     =\u003e 1,\n    'maxCount'     =\u003e 5,\n    'columnFields' =\u003e [\n        'col_title'     =\u003e [\n            'label'     =\u003e 'Title',\n            'exclude'   =\u003e true,\n            'inputType' =\u003e 'text',\n            'eval'      =\u003e [\n                'style' =\u003e 'width:130px'\n            ]\n        ],\n        'col_highlight' =\u003e [\n            'label'     =\u003e 'Hervorheben',\n            'exclude'   =\u003e true,\n            'inputType' =\u003e 'checkbox',\n            'eval'      =\u003e [\n                'style' =\u003e 'width:40px'\n            ]\n        ],\n        'col_url'       =\u003e [\n            'label'     =\u003e 'URL',\n            'exclude'   =\u003e true,\n            'inputType' =\u003e 'text',\n            'eval'      =\u003e [\n                'style'     =\u003e 'width:130px',\n                'mandatory' =\u003e false,\n                'rgxp'      =\u003e 'url'\n            ]\n        ],\n    ],\n];\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetamodels%2Fattribute_tablemulti","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetamodels%2Fattribute_tablemulti","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetamodels%2Fattribute_tablemulti/lists"}