Clément Gautier 12 лет назад
Родитель
Сommit
f2abbf6192

+ 2 - 1
Resources/doc/index.rst

@@ -1,12 +1,13 @@
 Admin Bundle
 ============
 
-**SonataAdminBundle is split into 4 bundles:**
+**SonataAdminBundle is split into 5 bundles:**
 
 * SonataAdminBundle: contains core libraries and services
 * `SonataDoctrineORMAdminBundle <https://github.com/sonata-project/SonataDoctrineORMAdminBundle>`_: integrates Doctrine ORM project with the core admin bundle
 * `SonataDoctrineMongoDBAdminBundle <https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle>`_: integrates MongoDB with the core admin bundle (early stage)
 * `SonataDoctrinePhpcrAdminBundle <https://github.com/sonata-project/SonataDoctrinePhpcrAdminBundle>`_: integrates PHPCR with the core admin bundle (early stage)
+* `SonataPropelAdminBundle <https://github.com/sonata-project/SonataPropelAdminBundle>`_: integrates Propel with the core admin bundle (early stage)
 
 The demo website can be found in http://demo.sonata-project.org/admin/dashboard (admin as user and password).
 

+ 1 - 3
Resources/doc/reference/getting_started.rst

@@ -52,9 +52,7 @@ bundle:
 * SonataDoctrineORMAdminBundle
 * SonataDoctrineMongoDBAdminBundle
 * SonataDoctrinePhpcrAdminBundle
-
-Propel users are warmly welcome to contribute and create a new bundle for Propel
-ORM that will be integrated in SonataAdminBundle.
+* SonataPropelAdminBundle
 
 Install a persistency service you need and configure it according to their
 related documentation.

+ 3 - 3
Resources/doc/reference/saving_hooks.rst

@@ -13,11 +13,11 @@ Example used with the FOS/UserBundle
 ------------------------------------
 
 The ``FOSUserBundle`` provides authentication features for your Symfony2 Project,
-and is compatible with Doctrine ORM & ODM. See 
+and is compatible with Doctrine ORM, Doctrine ODM and Propel. See
 https://github.com/FriendsOfSymfony/FOSUserBundle/ for more information.
 
-The user management system requires to perform specific call when the user 
-password or username are updated. This is how the Admin bundle can be used to 
+The user management system requires to perform specific call when the user
+password or username are updated. This is how the Admin bundle can be used to
 solve the issue by using the ``prePersist`` saving hook.
 
 .. code-block:: php