kaystrobach/tags

Last activity 02 Aug 2021 2248
composer require kaystrobach/tags

Add description here

0.0.13

Version
0.0.13
Type
neos-package
Release Date
Mar 26, 2018 15:06
Source
git
Distribution
zip
Requires
MIT 1ef1832edf9d8d59e753203d297a4d21c854dc69

Small FLOW package which provides Tagging for objects

{namespace ks=KayStrobach/Tags/ViewHelpers}

<ks:ifHasTag object="{object}" tag="{tag}">
    <f:then>
        ...
    </f:then>
    <f:else>
        ...
    </f:else>
</ks:ifHasTag>

The Tagging is provided via

  • an Tag Model
  • a TagableInterface
  • a TagableTrait

having all these helper you can add tagging in the matter of minutes

Currently there is no interface for adding tags. Please use the DB.

How to make your Entity tagable


use KayStrobach\Tags\Domain\Model\TagableTrait;

/**
 * @Flow\Entity
 */
class Entity implements TagableInterface
{

    use TagableTrait;
    
    public function __construct()
    {
        $this->initTags();
    }
}

The content of the readme is provided by Github
The same vendor provides 12 package(s).