fbeen/simplecmsbundle
Composer 安装命令:
composer require fbeen/simplecmsbundle
包简介
Complete CMS functionality for Symfony 3
关键字:
README 文档
README
Installation
Download the necessary bundles with Composer:
$ composer require fbeen/simplecmsbundle
Then add the bundles to the app/config/AppKernel.php file
// ...
// Sonata
new Sonata\CoreBundle\SonataCoreBundle(),
new Sonata\BlockBundle\SonataBlockBundle(),
new Sonata\DoctrineORMAdminBundle\SonataDoctrineORMAdminBundle(),
new Sonata\AdminBundle\SonataAdminBundle(),
// Ivory CKEditor
new Ivory\CKEditorBundle\IvoryCKEditorBundle(),
// Knp Menu
new Knp\Bundle\MenuBundle\KnpMenuBundle(),
// Doctrine behaviors
new Knp\DoctrineBehaviors\Bundle\DoctrineBehaviorsBundle,
// a2lix Translation
new A2lix\AutoFormBundle\A2lixAutoFormBundle(),
new A2lix\TranslationFormBundle\A2lixTranslationFormBundle(),
// Fbeen Simple CMS bundle
new Fbeen\SimpleCmsBundle\FbeenSimpleCmsBundle(),
new AppBundle\AppBundle(),
Required configuration in app/config/config.yml:
sonata_block:
default_contexts: [admin]
blocks:
# enable the SonataAdminBundle block
sonata.admin.block.admin_list: ~
sonata.block.service.clear_cache: ~
sonata_admin:
show_mosaic_button: false
dashboard:
groups:
cms:
label: 'SimpleCMS'
items:
- fbeen_simple_cms.admin.route
- fbeen_simple_cms.admin.content
- fbeen_simple_cms.admin.menu
- fbeen_simple_cms.admin.image
- fbeen_simple_cms.admin.simple_block_type
blocks:
-
position: left
type: sonata.admin.block.admin_list
settings:
groups: [main, docs, users, cms]
-
position: left
type: sonata.block.service.clear_cache
ivory_ck_editor:
default_config: cmf_content
configs:
cmf_content: { toolbar: standard }
a2lix_translation_form:
locale_provider: default
locales: [%locale%]
default_locale: %locale%
required_locales: [%locale%]
templating: "FbeenSimpleCmsBundle:Admin:a2lix_tabs.html.twig"
Enable translation in app/config/config.yml:
framework:
#esi: ~
translator: { fallbacks: ["%locale%"] }
Create the database and update the schema:
$ bin/console doctrine:database:create
$ bin/console doctrine:schema:update --force
Apply routing in the app/config/routing.yml
# Simple CMS
fbeen_simple_cms:
resource: .
type: fbeen_simple_cms
# Sonata-admin
admin_area:
resource: "@SonataAdminBundle/Resources/config/routing/sonata_admin.xml"
prefix: /admin
_sonata_admin:
resource: .
type: sonata_admin
prefix: /admin
# Application
app:
resource: "@AppBundle/Controller/"
type: annotation
# ...
Install the assets: (don't use the symlink option on windows)
$ bin/console assets:install --symlink
Usage
How to load a content in a normal symfony controller
Loading dynamic content is as easy as loading data from each other entity. To search content based on its name we can make use of the findCompleteContent method from the ContentRepository. The repository will join all other data like the blockContainer and the underlying blocks at once.
Example how to create a homepage with the content of the CMS and additionally some newsitems
/**
* @Route("/", name="homepage")
*/
public function indexAction(Request $request)
{
$em = $this->getDoctrine()->getManager();
$homepage = $em->getRepository('FbeenSimpleCmsBundle:Content')->findCompleteContent('homepage');
if (!$homepage) {
throw $this->createNotFoundException('No homepage configured');
}
$newsitems = $em->getRepository('AppBundle:Newsitem')->findFrontpageNews()->getResult();
return $this->render('default/index.html.twig', array(
'content' => $homepage,
'newsitems' => $newsitems,
));
}
multi languages
Imagine that you want a website that supports three languages and that you want to have dutch as default language and english and german as additional languages.
add a locales parameter under parameters:
parameters:
locale: nl
locales: [nl, en, de]
Change the a2lix translation form configuration
a2lix_translation_form:
locale_provider: default
locales: %locales%
# ...
To be continued
fbeen/simplecmsbundle 适用场景与选型建议
fbeen/simplecmsbundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 51 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 11 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Simple CMS Bundle」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 fbeen/simplecmsbundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 fbeen/simplecmsbundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 fbeen/simplecmsbundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
2lenet/EasyAdminPlusBundle
GraphQL authentication for your headless Craft CMS applications.
The bundle for easy using json-rpc api on your project
Set Links with a specific language parameter
A simple library for make Lexer and Parsers to build a language
A simple library that allows transform any kind of data to native php data or whatever
统计信息
- 总下载量: 51
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-11-06