{"id":39291582,"url":"https://github.com/masugadesign/cp-filters-craft-cms","last_synced_at":"2026-01-18T01:19:09.121Z","repository":{"id":56613271,"uuid":"269465947","full_name":"masugadesign/cp-filters-craft-cms","owner":"masugadesign","description":"Add advanced element filtering to the Craft CMS control panel.","archived":false,"fork":false,"pushed_at":"2025-01-21T19:49:37.000Z","size":254,"stargazers_count":16,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-11T06:44:41.732Z","etag":null,"topics":["craft-cms","craft-cms-plugin","craft-plugin","craftcms","craftcms-plugin"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/masugadesign.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}},"created_at":"2020-06-04T21:08:56.000Z","updated_at":"2023-10-16T07:26:24.000Z","dependencies_parsed_at":"2024-03-29T13:55:18.577Z","dependency_job_id":"7976f88c-bd41-492e-8959-a423d06d10ed","html_url":"https://github.com/masugadesign/cp-filters-craft-cms","commit_stats":{"total_commits":54,"total_committers":4,"mean_commits":13.5,"dds":0.2407407407407407,"last_synced_commit":"cce30e24d0dddfe455bf73aae79d2f029faf53c9"},"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/masugadesign/cp-filters-craft-cms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masugadesign%2Fcp-filters-craft-cms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masugadesign%2Fcp-filters-craft-cms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masugadesign%2Fcp-filters-craft-cms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masugadesign%2Fcp-filters-craft-cms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/masugadesign","download_url":"https://codeload.github.com/masugadesign/cp-filters-craft-cms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masugadesign%2Fcp-filters-craft-cms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28526074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"ssl_error","status_checked_at":"2026-01-18T00:39:39.467Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["craft-cms","craft-cms-plugin","craft-plugin","craftcms","craftcms-plugin"],"created_at":"2026-01-18T01:19:07.110Z","updated_at":"2026-01-18T01:19:09.116Z","avatar_url":"https://github.com/masugadesign.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CP Filters for Craft CMS\n\n\u003e [!WARNING]\n\u003e This is a discontinued commercial plugin and should not be installed without a previously purchased license.\n\u003e For more information, see: https://www.gomasuga.com/blog/discontinuing-craft-plugin-sales\n\n### Advanced filtering for Entry elements in the control panel.\n\n### Table of Contents\n\n### Requirements\n\n* Craft CMS v4.0.0+\n* PHP 8.0.2+\n\n### Installation\n\nAdd the following to your composer.json requirements. Be sure to adjust the version number to match the version you wish to install.\n\n```\n\"masugadesign/cpfilters\": \"2.1.1\",\n```\n\n### Config\n\nThe following settings may be configured in a **cpfilters.php** config file.\n\n#### filterableEntryTypeIds\n\nThis is an array of entry __type__ IDs, not to be confused with the __section__ IDs.\n\n```\n'filterableEntryTypeIds' =\u003e [1,5,10],\n```\n\n#### filterableAssetVolumeIds\n\nSpecify an array of Asset volume IDs to restrict which volumes are filterable.\n\n```\n'filterableAssetVolumeIds' =\u003e [2,3,8],\n```\n\n#### filterableCategoryGroupIds\n\nSpecify an array of Category group IDs to restrict which groups are filterable.\n\n```\n'filterableCategoryGroupIds' =\u003e [1,2,4,5,6,10],\n```\n\n#### filterableTagGroupIds\n\nSpecify an array of Tag group IDs to restrict which groups are filterable.\n\n```\n'filterableTagGroupIds' =\u003e [1,2],\n```\n\n#### additionalFieldTypes\n\nRegister custom field types as filterable by supplying the fully qualified class name and an array of filter options. The following filter options are available. Be careful to choose appropriate filter options because not all field types can\nsupport all the filters.\n\nFilter options: `contains`, `starts with`, `ends with`, `is equal to`, `is assigned`, `is greater than`, `is less than`, `is empty`, `is not empty`\n\n```\n\u003c?php\n'additionalFieldTypes' = [\n\t'modules\\masuga\\fields\\CategoriesMultipleSources' =\u003e ['is assigned', 'is empty', 'is not empty']\n],\n```\n\n#### includeCommerce\n\nSpecify whether or not Craft Commerce is installed on this site and should be available to CP Filters.\n**Note**: Currently, the only filterable \"objects\" from Craft Commerce that are available to CP Filters are Products and Orders.\n\n#### filterableProductTypeIds\n\nSpecify an array of Product Type IDs to restrict which types are filterable.\n\n### Saved Filters\nYou can save the set of currently selected filters to easily view the results later. Filters are saved per User.\n\n![Saved Filters](https://www.gomasuga.com/uploads/software/cpfilters-entries-saved-filters.jpg)\n\n### Planned Features\n\n- Filter by more element types: Assets, Users, Orders, Products\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasugadesign%2Fcp-filters-craft-cms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmasugadesign%2Fcp-filters-craft-cms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasugadesign%2Fcp-filters-craft-cms/lists"}