https://github.com/dereuromark/cakephp-tags
CakePHP Tags Plugin
https://github.com/dereuromark/cakephp-tags
cakephp tagging tags
Last synced: 30 days ago
JSON representation
CakePHP Tags Plugin
- Host: GitHub
- URL: https://github.com/dereuromark/cakephp-tags
- Owner: dereuromark
- License: mit
- Created: 2017-12-23T23:25:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-16T19:06:49.000Z (6 months ago)
- Last Synced: 2025-03-31T18:21:21.520Z (about 1 month ago)
- Topics: cakephp, tagging, tags
- Language: PHP
- Size: 281 KB
- Stars: 16
- Watchers: 6
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-cakephp - Tags plugin - For tagging and finding tagged records. (Search)
README
# CakePHP Tags Plugin
[](https://github.com/dereuromark/cakephp-tags/actions/workflows/ci.yml?query=branch%3Amaster)
[](https://codecov.io/github/dereuromark/cakephp-tags/branch/master)
[](https://packagist.org/packages/dereuromark/cakephp-tags)
[](https://packagist.org/packages/dereuromark/cakephp-tags)
[](https://php.net/)
[](LICENSE)Make tagging of entities a piece of cake.
This branch is for **CakePHP 5.0+**. For details see [version map](https://github.com/dereuromark/cakephp-tags/wiki#cakephp-version-map).
## Install
Using Composer:
```
composer require dereuromark/cakephp-tags
```You then need to load the plugin. In `src/Application.php`, something like:
```php
public function bootstrap() {
parent::bootstrap();
$this->addPlugin('Tags');
}```
Also don't forget to run migration (e.g. using Migrations plugin):
```
bin/cake migrations migrate -p Tags
```## Demo
See Sandbox @ https://sandbox.dereuromark.de/sandbox/tagsTutorial and Blog Post: https://www.dereuromark.de/2018/07/12/tutorial-cakephp-tagging/
## Documentation
For documentation, as well as tutorials, see the [docs](docs/) directory of this repository.