CmsBundle icon indicating copy to clipboard operation
CmsBundle copied to clipboard

Super-lightweight CMS bundle for Symfony

Results 5 CmsBundle issues
Sort by recently updated
recently updated
newest added

It seems there's an issue when there is no matching layout for a route that isn't related to the Cms. This PR is a WIP on fixing this issue on...

Hello I'm trying to generate a link on a custom page (not a cmspage) to point on a cmspage. I do this : ``` {% trans %}menu.my_page{% endtrans %} ```...

The [upgrade to doctrine/doctrine-bundle 2.0](https://github.com/doctrine/DoctrineBundle/blob/master/UPGRADE-2.0.md) is not exactly trivial, but I don't think it should be a *major* issue. (At the same time supporting ^3.0 *is* trivial, so you may...

When find pages by category. must be add `->andWhere('page.enabled = true')` like: ```php public function findByCategory(Category $category, $order, $orderBy, $page, $limit): Paginator { $qb = $this->createQueryBuilder('page') ->where('page.category = :category') ->andWhere('page.enabled...

since this bundle supports Symfony 6.4, it should work in Symfony 7 too.