removed orbitale CMS 2 as it depends on symfony/symfony

This commit is contained in:
Fabien Potencier
2017-09-13 12:32:59 -07:00
parent 94d818bc44
commit 69ce9c3387
5 changed files with 0 additions and 82 deletions
@@ -1,6 +0,0 @@
orbitale_cms:
page_class: App\Entity\Page
category_class: App\Entity\Category
# Define your layout here if you need a custom layout for your CMS
# layouts:
# main: { resource: base.html.twig }
@@ -1,9 +0,0 @@
orbitale_cms_category:
resource: "@OrbitaleCmsBundle/Controller/CategoryController.php"
type: annotation
prefix: /category/
orbitale_cms_page:
resource: "@OrbitaleCmsBundle/Controller/PageController.php"
type: annotation
prefix: /page/
-9
View File
@@ -1,9 +0,0 @@
{
"bundles": {
"Orbitale\\Bundle\\CmsBundle\\OrbitaleCmsBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
}
}
@@ -1,29 +0,0 @@
<?php
namespace App\Entity;
use Orbitale\Bundle\CmsBundle\Entity\Category as BaseCategory;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="Orbitale\Bundle\CmsBundle\Repository\CategoryRepository")
* @ORM\Table(name="orbitale_cms_categories")
*/
class Category extends BaseCategory
{
/**
* @var int
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @return int
*/
public function getId()
{
return $this->id;
}
}
@@ -1,29 +0,0 @@
<?php
namespace App\Entity;
use Orbitale\Bundle\CmsBundle\Entity\Page as BasePage;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="Orbitale\Bundle\CmsBundle\Repository\PageRepository")
* @ORM\Table(name="orbitale_cms_pages")
*/
class Page extends BasePage
{
/**
* @var int
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @return int
*/
public function getId()
{
return $this->id;
}
}