Tags icon indicating copy to clipboard operation
Tags copied to clipboard

Tagging for CakePHP 3

Results 8 Tags issues
Sort by recently updated
recently updated
newest added

if i send an empty string tags will not deleted; i patch with this: ``` // Deleting tags if(isset($data['tags']) && trim($data['tags']) == '') { $enitity->tags = []; } ``` Is...

Finder method solution using cake example http://book.cakephp.org/3.0/en/orm/query-builder.html#filtering-by-associated-data

enhancement

I like this approach, let me know what you guys think. This lets you do: ``` php $muffin = $this->Muffins->get(1, ['contain' => ['Tags']]); echo implode(', ', $muffin->tags); ``` So in...

I am getting following errors when running app test on Users controller, which uses Users Table with TagBehavior loaded ``` RuntimeException: Field "tag_count" does not exist in table "users" ```...

The way we use the plugin is to label our contacts and accounts in our CRM. It would be nice if we would be able to give specific tags a...

After following the instructions in the Quick Start Guide, the _tags_ field (e.g. in edit.ctp) is not auto-polulated with the tags.

I'm trying to accomplish a search on several fields, including tags. When trying to use matching or innerJoinWith Tags, I'm getting that error. Following on the query that is generated...

Reopened PR: upgrade to CakePHP 5.0