2017 © Pedro PelĂĄez
 

library content-aware

A library base for content aware entities for PositibeLabs Project

image

positibe/content-aware

A library base for content aware entities for PositibeLabs Project

  • Wednesday, April 5, 2017
  • by pcabreus
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Positibe Publishable Component

This library provide you some traits to be used in doctrine entities that implement some system of entity that has some content but has not relation with them. Also provide some interfaces for repositories to create a common management of content aware., (*1)

ContentClassAwareTrait

[php]
namespace Positibe\Component\ContentAware\Entity;

trait ContentClassAwareTrait {

    /**
     * @var string
     *
     * @ORM\Column(name="content_class", type="string", length=128, nullable=TRUE)
     */
    protected $contentClass;

    public function setContentClassByContent($content)
    {
        $this->contentClass = get_class($content);
    }

    /**
     * @return string
     */
    public function getContentClass()
    {
        return $this->contentClass;
    }

    /**
     * @param string $contentClass
     */
    public function setContentClass($contentClass)
    {
        $this->contentClass = $contentClass;
    }
}

ContentAwareTrait

[php]
namespace Positibe\Component\ContentAware\Entity;

trait ContentAwareTrait
{
    protected $content;
    use ContentClassAwareTrait;

    public function setContent($content)
    {
        $this->content = $content;
        $this->setContentClassByContent($content);
    }

    public function getContent()
    {
        return $this->content;
    }
}

ContentAwareInterface

This interface is only to know if Repository is of the ContentAware entities, (*2)

[php]
namespace Positibe\Component\ContentAware\Model;

interface ContentAwareInterface
{

}

ContentAwareRepositoryInterface

[php]
namespace Positibe\Component\ContentAware\Model;

interface ContentAwareRepositoryInterface
{
    public function findContent($object);
}

Using php trait

These are simple php traits so you can use it like that., (*3)

[php]
namespace Blog\Entity;

use Doctrine\ORM\Mapping as ORM;
use Positibe\Component\ContentAware\Entity\ContentClassAwareTrait;
use Positibe\Component\ContentAware\Model\ContentAwareInterface;

/**
 * @ORM\Table()
 * @ORM\Entity
 */
class Tags implements ContentAwareInterface
{
    use ContentClassAwareTrait;

    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;
}

The Versions

05/04 2017

dev-master

9999999-dev http://positibelabs.blogspot.com/component/content-aware

A library base for content aware entities for PositibeLabs Project

  Sources   Download

MIT

content positibelabs positibe content aware

05/04 2017

0.1.1.0

0.1.1.0 http://positibelabs.blogspot.com/component/content-aware

A library base for content aware entities for PositibeLabs Project

  Sources   Download

MIT

content positibelabs positibe content aware