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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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:

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 of layout.html.twig.

The page with id=1 and slug=test will be shown by controller at these urls:

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

PHP Build Version
Package Version
Requires php Version >=5.3.2
symfony/symfony Version >=2.1
stof/doctrine-extensions-bundle Version >=1.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package lexxpavlov/pagebundle contains the following files

Loading the files please wait ....