• Stars
    star
    367
  • Rank 115,903 (Top 3 %)
  • Language
    PHP
  • License
    Other
  • Created over 13 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Base project for trying CMF components integration

This repository is no longer maintained

Due to lack of interest, we had to decide to discontinue this repository. The CMF project focusses on the Routing component and RoutingBundle, which are still in active use by other projects.

This repository will no longer be upgraded and marked as abandoned, but will be kept available for legacy projects or if somebody wants to experiment with the CMF.

You can contact us in the #symfony_cmf channel of the Symfony devs slack.

Symfony Content Management Framework Sandbox

Build Status StyleCI Dependency Status

This sandbox is a testing ground for the cmf bundles being developed.

It is based on the Symfony Standard edition and adds all cmf related bundles on top of the standard edition bundles.

Link to the live demo

Getting started

You can run the sandbox on your system, or in a virtualbox VM using Vagrant. For the latter, see "Getting started using Vagrant"

You will need:

  • PHP 5.3.9+ (with intl extension)
  • PHPUnit 3.6+ (optional)
  • Composer

Initial setup and configuration

git clone git://github.com/symfony-cmf/cmf-sandbox.git
cd cmf-sandbox
curl -s http://getcomposer.org/installer | php --
php composer.phar install

At the end of the installation you will be interactively asked several configuration questions. Note that by default you will end up with a configuration using SQLite and Doctrine DBAL for storage. If you want to adjust the configuration to use Jackrabbit please look at the following section.

Install and run Apache JackRabbit

Follow the guide in the Jackalope Wiki. You can also use a different PHPCR implementation but this is the most solid implementation.

Once you have that, copy the default jackalope-jackrabbit configuration file, adjust it as needed and install the dependencies with composer:

cp app/config/phpcr_jackrabbit.yml.dist app/config/phpcr.yml

The last command will fetch the main project and all its dependencies (CMF Bundles, Symfony, Doctrine\PHPCR, Jackalope ... ). You might want to have a look at the app/config/parameters.yml and adjust as needed.

Install the Doctrine DBAL provider (optional)

Instead of phpcr_jackrabbit.yml.dist, use the phpcr_doctrine_dbal*.yml.dist files and create the database accordingly. If you have the PHP sqlite extension available, this is the simplest to quickly try out the CMF. Copy the file and then install the dependencies:

cp app/config/phpcr_doctrine_dbal.yml.dist app/config/phpcr.yml

The Doctrine DBAL implementation is installed by default already along side the Jackrabbit implementation.

To disable the meta data and node cache for debugging comment the caches settings in the phpcr.yml.

Then, create the database and tables and set up the default workspace using:

php bin/console doctrine:database:create
php bin/console doctrine:phpcr:init:dbal --force

Prepare the PHPCR repository

First you need to create a workspace that will hold the data for the sandbox. The default parameters.yml defines the workspace to be 'default'. You can change this of course. If you do, f.e. to 'sandbox, also run the following command:

php bin/console doctrine:phpcr:workspace:create sandbox

Once your workspace is set up, you need to register the node types for PHPCR-ODM:

php bin/console doctrine:phpcr:repository:init

Import the fixtures

The admin backend is still in an early stage. Until it improves, the easiest is to programmatically create data. The best way to do that is with the doctrine data fixtures. The DoctrinePHPCRBundle included in the symfony-cmf repository provides a command to load fixtures:

php bin/console -v doctrine:phpcr:fixtures:load

Run this to load the fixtures from the Sandbox AppBundle.

Setup filesystem permissions

As with any Symfony2 installation, you need to set up some filesystem permissions. A good guide is in the Symfony2 installation guide. If you use the default setup, an sqlite database will be created at app/app.sqlite. You need to set up permissions for this file and the app/ folder with the method you chose from the installation guide.

If you just want to move on and try out the sandbox for now, you can run:

sudo chmod -R 777 app/

Access by web browser

Create an apache virtual host entry along the lines of:

<Virtualhost *:80>
    Servername cmf.lo
    DocumentRoot /path/to/symfony-cmf/cmf-sandbox/web
    <Directory /path/to/symfony-cmf/cmf-sandbox>
        AllowOverride All
    </Directory>
</Virtualhost>

And add an entry to your hosts file for cmf.lo

If you are running Symfony2 for the first time, run http://cmf.lo/config.php to ensure your system settings have been setup inline with the expected behaviour of the Symfony2 framework.

Note however that "Configure your Symfony Application online" is not supported in the sandbox.

Then point your browser to http://cmf.lo/app_dev.php

Production environment

In order to run the sandbox in production mode at http://cmf.lo/ you need to generate the doctrine proxies and dump the assetic assets:

php bin/console cache:warmup --env=prod --no-debug
php bin/console assetic:dump --env=prod --no-debug

Getting started using Vagrant

please checkout the README.md in the vagrant/ folder of the project

Other hints

Console

The PHPCR ODM Bundle provides a couple of useful commands in the doctrine:phpcr namespace. Type bin/console to see them all.

Admin interface

There is a proof-of-concept admin interface using the SonataPhpcrAdminBundle at http://cmf.lo/app_dev.php/admin/dashboard

Basically you have paginated lists for two types of documents. You create new documents, edit and delete them. Some filtering is available in the list. This bundle is an implementation of Sonata Admin Bundle

At the moment there is no notion of parents and sons in the admin bundle.

Run the test suite

Functional tests are written with PHPUnit. Note that Bundles and Components are tested independently:

php bin/console doctrine:phpcr:workspace:create sandbox_test
phpunit -c app

Remove demo configuration

If you start a project from the sandbox, remove .sensiolabs.yml as its not a good example for production use.

More Repositories

1

symfony-cmf

Meta package tying together all the key packages of the Symfony CMF project.
729
star
2

Routing

Routing component building on the Symfony Routing component
PHP
289
star
3

routing-bundle

Symfony bundle to provide the CMF chain router to handle multiple routers, and the dynamic router to load routes from a database or other sources.
PHP
160
star
4

symfony-cmf-standard

MOVED to https://github.com/symfony-cmf/standard-edition
PHP
98
star
5

simple-cms-bundle

UNMAINTAINED - A more-than-simple cms based on the cmf components
PHP
49
star
6

seo-bundle

A SEO Solution for duplicate contents, page titles, etc.
PHP
47
star
7

symfony-cmf-docs

The documentation for the symfony content management framework
Python
44
star
8

symfony-cmf-website

[website is discontinued] Website for the Symfony CMF
HTML
36
star
9

menu-bundle

Extends the KnpMenuBundle to work with PHPCR ODM
PHP
32
star
10

media-bundle

UNMAINTAINED - Minimalistic interfaces to handle media in the context of the CMF
PHP
30
star
11

create-bundle

UNMAINTAINED - Integrates create.js and createphp into Symfony2
PHP
29
star
12

core-bundle

Provides some basic helpers for rendering content documents
PHP
25
star
13

slugifier-api

Provides a basic interface to implement for third party slugifiers packages
PHP
25
star
14

tree-browser-bundle

Integrates javascript tree browser with PHPCR and PHPCR-ODM.
JavaScript
22
star
15

blog-bundle

ABANDONED - to focus our efforts, this bundle is no longer maintained
PHP
22
star
16

phpcrbrowser

OBSOLETE, use https://github.com/marmelab/phpcr-browser instead
PHP
20
star
17

block-bundle

Extends the SonataBlockBundle to integrate with PHPCR ODM
PHP
20
star
18

content-bundle

Provides some basic document classes and controllers for modeling content
PHP
19
star
19

routing-auto-bundle

Adding automatic route generating on top of the symfony cmf routing
PHP
14
star
20

resource-rest-bundle

REST API for Puli Resources provided through the CmfResourceBundle
PHP
11
star
21

search-bundle

UNMAINTAINED - search Bundle for the Symfony CMF project integrating with LiipSearchBundle
PHP
8
star
22

routing-auto

RoutingAuto component
PHP
6
star
23

resource-bundle

Resource Location for CMF documents based on Puli
PHP
5
star
24

sonata-phpcr-admin-integration-bundle

Symfony CMF sonata PHPCR admin implementations
PHP
5
star
25

resource

CMF Resource Component
PHP
4
star
26

Testing

Symfony CMF Testing Component - an internal tool for the CMF ecosystem
PHP
4
star
27

routing-auto-orm-bundle

Adds Doctrine ORM support to routing-auto-bundle
PHP
3
star
28

grapesjs-bundle

Bundle to enable GrapsJS functions for CMF content.
PHP
2
star
29

routing-docs

Symfony bundle to provide the CMF chain router to handle multiple routers, and the dynamic router to load routes from a database or other sources.
Python
1
star
30

symfony-cmf-jackrabbit

Meta repository to install jackrabit implementation of doctrine/phpcr-bundle.
1
star