k3dbe/propel-taggable-behavior

Add tags functionality to the objects.

dev-master 2015-05-28 16:02 UTC

This package is not auto-updated.

Last update: 2024-04-17 05:46:54 UTC


README

Installation

Download TaggableBehavior.php and put it somewhere.

propel.behavior.taggable.class = path.to.taggable.behavior

If you are using composer then just add:

{
    "require": {
        "k3dbe/propel-taggable-behavior": "dev-master"
    }
}

The ini-configuration would be

propel.behavior.taggable.class = vendor.k3dbe.src.propel-taggable-behavior.src.TaggableBehavior

Usage

Behavior creates two persistent tables:

  • tag (id, name)
  • %table%_tag

Add to schema.xml:

<behavior name="taggable" />

Behavior will add several methods to the Model:

public function addTags($tags, PropelPDO $con = null)
public function removeTags($tags, PropelPDO $con = null)
public function addTag(Tag $tag)
public function removeTag(Tag $tag)
public function removeAllTags(PropelPDO $con = null)