{"id":34725846,"url":"https://github.com/liquidlight/typo3-module-data-listing","last_synced_at":"2025-12-25T02:27:12.771Z","repository":{"id":57015366,"uuid":"426205574","full_name":"liquidlight/typo3-module-data-listing","owner":"liquidlight","description":"Interactive datatables for the TYPO3 backend","archived":false,"fork":false,"pushed_at":"2025-04-08T14:43:35.000Z","size":292,"stargazers_count":0,"open_issues_count":4,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-30T06:28:42.075Z","etag":null,"topics":["php","typo3","typo3-extension"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/liquidlight.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-09T11:38:50.000Z","updated_at":"2025-02-17T12:07:45.000Z","dependencies_parsed_at":"2022-08-22T09:31:39.568Z","dependency_job_id":"7ccc4af2-2b81-4847-ae8e-45e5a38e1989","html_url":"https://github.com/liquidlight/typo3-module-data-listing","commit_stats":{"total_commits":32,"total_committers":4,"mean_commits":8.0,"dds":0.21875,"last_synced_commit":"f3519299a8b64ef979228adbecfe3f6d1780645f"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/liquidlight/typo3-module-data-listing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquidlight%2Ftypo3-module-data-listing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquidlight%2Ftypo3-module-data-listing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquidlight%2Ftypo3-module-data-listing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquidlight%2Ftypo3-module-data-listing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liquidlight","download_url":"https://codeload.github.com/liquidlight/typo3-module-data-listing/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquidlight%2Ftypo3-module-data-listing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28017200,"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-12-25T02:00:05.988Z","response_time":58,"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":["php","typo3","typo3-extension"],"created_at":"2025-12-25T02:27:12.688Z","updated_at":"2025-12-25T02:27:12.747Z","avatar_url":"https://github.com/liquidlight.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Backend Modules Datatables\n\n## Overview\n\nThis package provides you with a backend datatable view of fe_users allowing you to sort, search and export your fe_users as well as filter by usergroup.\n\nBy default, the following columns are shown:\n\n1. ID\n2. Username\n3. Usergroup\n4. Title\n5. First name\n6. Last name\n7. Email\n\nBy default, the following columns are searchable:\n\n1. ID\n2. Username\n3. First name\n4. Last name\n5. Email\n\n## Settings\n\nThere are a few different settings that can be set on a site-by-site basis via typoscript.\n\n### Joins\n\nIt is possible to bolt on data from related tables by making use of the `module.tx_moduledatalisting.settings.joins` object where:\n1. `type` can be leftJoin, rightJoin or innerJoin\n2. `table` is the name of the related table\n3. `localIdentifier` is the unique identifier of the related table\n4. `foreignIdentifier` is the matching field in the fe_users table\n\n**Setup**\n```\nmodule.tx_moduledatalisting {\n\tsettings {\n\t\tjoins {\n\t\t\t1 {\n\t\t\t\ttype = leftJoin\n\t\t\t\ttable = related_table\n\t\t\t\tlocalIdentifier = uid\n\t\t\t\tforeignIdentifier = related_table_uid\n\t\t\t}\n\t\t}\n\t}\n}\n```\n\n### Additional columns\n\nIt is possible to pull in additional columns from the fe_users table as well as columns from any join tables by making use of the `module.tx_moduledatalisting.settings.additionalColumns` object where:\n1. `table` is the name of the table you wish to pull the additional column from (this can be fe_users or any joined tables)\n2. `column` is the name of the column you wish to pull in\n3. `label` is the label that is used in the datatable header\n\n**`setup`**\n\n```\nmodule.tx_moduledatalisting {\n\tsettings {\n\t\tadditionalColumns {\n\t\t\ttable {\n\t\t\t\tcolumn = label\n\t\t\t}\n\t\t}\n\t}\n}\n```\n\n### Searchable columns\n\nThe default searchable columns are specified above however it is possible to add and/or remove columns from this list by making use of the `module.tx_moduledatalisting.settings.searchableColumns` object where:\n1. `table` is the name of the table you wish to pull the searchable column from (this can be fe_users or any joined tables)\n2. `column` is the name of the column you wish to make searchable\n\n**`setup`**\n\n```\nmodule.tx_moduledatalisting {\n\tsettings {\n\t\tsearchableColumns := addToList(table.column1,table.column2)\n\t\tsearchableColumns := removeFromList(table.column3)\n\t}\n}\n```\n\nIt is also possible to completely reset the searchable columns:\n```\nmodule.tx_moduledatalisting {\n\tsettings {\n\t\tsearchableColumns = table.column1,table.column2\n\t}\n}\n```\n\n## Icons\n\nThe Module Data Listing package comes with several pre-packaged icons you can use for your custom modules. We always welcome more additions, so if you create an icon and would like it included as standard, please create an issue or submit a PR.\n\n### Usage\n\nTo use an icon, use the `iconIdentifier` from the table below when using the `registerModule` method.\n\nThe `module-listing-users` icon is used with the default `tx_module_data_listing_feusers` module.\n\n### Available Icons\n\nThe icons currently available are:\n\n| iconIdentifier | preview |\n|---|---|\n| `module-listing-company` | ![module-listing-company](./Resources/Public/Icons/Company.svg) |\n| `module-listing-map` | ![module-listing-mao](./Resources/Public/Icons/Map.svg) |\n| `module-listing-tools` | ![module-listing-tools](./Resources/Public/Icons/Tools.svg) |\n| `module-listing-users` | ![module-listing-users](./Resources/Public/Icons/Users.svg) |\n\n## Upgrading to 1.2.0\n\n- [Show the contents](https://github.com/liquidlight/typo3-module-data-listing/commit/4ee5a06b5e5d4c7e04f1999a975e508e6a91a959) of any overridden filters (add the class of `show`)\n- Update DataTables JavaScript (see below)\n\nVersion `1.2.0` comes with DataTables 2.x, which uses the new layout property.\n\nIf you have a local JavaScript file for you custom DataTables, you can remove the `dom` property and replace with `layout`.\n\n```diff\n-\t'dom': '\u003c\\'form-inline form-inline-spaced\\'lf\u003eprtipB',\n+\t'layout': {\n+\t\tbottom2: 'buttons',\n+\t},\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliquidlight%2Ftypo3-module-data-listing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliquidlight%2Ftypo3-module-data-listing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliquidlight%2Ftypo3-module-data-listing/lists"}