Download the PHP package lexxpavlov/pagebundle without Composer
On this page you can find all versions of the php package lexxpavlov/pagebundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lexxpavlov/pagebundle
More information about lexxpavlov/pagebundle
Files in lexxpavlov/pagebundle
Package pagebundle
Short Description Symfony2 Page bundle with meta data, predefined form type and Sonata Admin service
License MIT
Homepage https://github.com/lexxpavlov/PageBundle
Informations about the package pagebundle
LexxpavlovPageBundle
This bundle helps you to manage your static pages in Symfony2 project.
The bundle has a page entity with fields:
- title - the title of page
- content - html content. May use ckeditor for easy wysiwyg edit of content
- slug - use as url of page. May be autogenerated based on title
- published - enable or disable page
- publishedAt, createdAt, updatedAt - Datetime fields, that contain actual information about page
- meta: keywords and description - SEO info
If you use SonataAdminBundle, this bundle automatically adds an entity to it.
Installation
Composer
Download LexxpavlovPageBundle and its dependencies to the vendor directory. The bundle has a StofDoctrineExtensionsBundle as required dependency and IvoryCKEditorBundle as optional dependency.
You can use Composer for the automated process:
or manually add link to bundle into your composer.json
and run $ php composer.phar update
:
Composer will install bundle to vendor/lexxpavlov
directory. Bundle StofDoctrineExtensionsBundle will be installed automatically, if it didn't install earlier.
Adding bundle to your application kernel
If you are already have StofDoctrineExtensionsBundle
in the your AppKernel
, you don't need to add its twice.
Configuration
First you must create your own page entity class. It's easy to make by extend base page from bundle.
Here is the default configuration for the bundle:
This will activate doctrine Timestampable extension. Also you may activate Sluggable and Blameable extensions (see below). See more about doctrine extensions at documentation.
Now you need create the table in your database:
This will show SQL query for creating the table in the database. You may manually run this query.
Note. You may also execute
php app/console doctrine:schema:update --force
command, and Doctrine will create needed table for you. But I strongly recommend you to execute--dump-sql
first and check SQL, which Doctrine will execute.
Usage
If you use SonataAdminBundle, then you are already have admin tool for creating new pages. Otherwise you need to write your own creating tool, and here you may use predefined form:
There is the sample code for showing page, controller class and twig template. There are 3 different versions of action code, that doing the same - get page from database and show it in the twig template. Choose one or write your code.
Controller:
And template:
Note. Do not forget add a
meta
block to the<head>
section oflayout.html.twig
.
The page with id=1 and slug=test will be shown by controller at these urls:
- /page/1.html
- /page/test
- /page-find/1
- /page-find/test
Advanced configuration
Full configuration
ckeditor
form type is added by IvoryCKEditorBundle.
Activate autogeneration of slug field
LexxpavlovPageBundle marks slug
field as @Gedmo\Slug
. You need to activate its listener in StofDoctrineExtensionsBundle config:
StofDoctrineExtensionsBundle has a tool for build slug from any local string to latin-only string (urlizer). Urlizer gets any UTF-8 string, urlizes it and saves to slug field. For automatic filling you must left slug field blank while create or update the page. If slug field isn't blank, than Sluggable doesn't work.
Unfortunately, this automatic tool produce not perfect result, and you may want to write your own urlizer for your language and set up Sluggable extension to use that urlizer. You may see extension documentation and code of listener in this bundle.
This bundle has sample urlizer for Russian language:
Append autoupdating user fields
You may add createdBy
and updatedBy
fields to your entity and use Blameable doctrine extension. Make next changes to your page entity class:
And activate Blameable extension in StofDoctrineExtensionsBundle config:
All versions of pagebundle with dependencies
symfony/symfony Version >=2.1
stof/doctrine-extensions-bundle Version >=1.1