lch/cms-bundle

A complete and full Cms based on Symfony

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 5

Type:symfony-bundle

pkg:composer/lch/cms-bundle

dev-master 2018-01-09 16:34 UTC

This package is not auto-updated.

Last update: 2025-09-25 21:16:42 UTC


README

cms bundle presentation

Instalation

Site Entity

Create a entity extending the Lch\CmsBundle\Entity\Site

The minimum entity have to be

<?php

namespace ExempleBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Lch\CmsBundle\Entity\Site as BaseSite;

/**
 * Class Site
 * @package AppBundle\Entity
 *
 * @ORM\Table(name="site")
 * @ORM\Entity()
 */
class Site extends BaseSite
{
    /**
     * @var int
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;
}