Không có mô tả

Gediminas Morkevicius ceb483225d [tests] reorganized sluggable handler tests 14 năm trước cách đây
bin 4dcbd62ae7 [mapping] addaption of annotation mapping to the latest changes 14 năm trước cách đây
doc 30f9806c6f [docs] updated annotation mapping reference 14 năm trước cách đây
lib 63f4e28ddd [sluggable] handlers implemented support for ODM 14 năm trước cách đây
schemas ecc95585c9 [sluggable] mapping on slugField names bug fix, closes #116 14 năm trước cách đây
tests ceb483225d [tests] reorganized sluggable handler tests 14 năm trước cách đây
.gitignore 90d86c6858 [vendors] removed submodules in order to avoid recursive cloning, added php script instead 14 năm trước cách đây
LICENSE 81472b0b3c [tree] root id support, diferent strategy support 14 năm trước cách đây
README.markdown 39180190cc updated README 14 năm trước cách đây

README.markdown

Doctrine 2 behavioral extensions

This package contains extensions for Doctrine 2 that hook into the facilities of Doctrine and offer new functionality or tools to use Doctrine 2 more efficently. This package contains mostly used behaviors which can be easily attached to your event system of Doctrine 2 and handle the records being flushed in the behavioral way. List of extensions:

  • Tree - this extension automates the tree handling process and adds some tree specific functions on repository. (closure or nestedset)
  • Translatable - gives you a very handy solution for translating records into diferent languages. Easy to setup, easier to use.
  • Sluggable - urlizes your specified fields into single unique slug
  • Timestampable - updates date fields on create, update and even property change.
  • Loggable - helps tracking changes and history of objects, also supports version managment.
  • Sortable - makes any document or entity sortable

Currently these extensions support Yaml, Annotation and Xml mapping. Additional mapping drivers can be easily implemented using Mapping extension to handle the additional metadata mapping.

Note: doctrine2.0.x branch is no longer being supported and all new features and fixes are on master branch, which currently supports 2.1.x versions of doctrine2

Note: from now on there is only one listener per extension which supports ODM and ORM adapters to deal with objects. Only one instance of listener is required, and can be attached to many different type object managers, currently supported (ORM or ODM)

Note: Please note, that xml mapping needs to be in a different namespace, the declared namespace for Doctrine extensions is http://gediminasm.org/schemas/orm/doctrine-extensions-mapping So root node now looks like this:

<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
                 xmlns:gedmo="http://gediminasm.org/schemas/orm/doctrine-extensions-mapping">
...
</doctrine-mapping>

Latest updates

2011-07-14

  • Sluggable can handle multiple slug fields, now on Sluggable annotation you will need to provide slugField property it should belong to
  • Translatable query hint will use default locale translations in case if it does not have a translation in currently used locale

2011-06-24

  • Implemented better compatibility with new and older annotation mapping style. Read doc/annotations.md on how to achieve best performances using annotation mapping and how to configure it.
  • The object wrappers were implemented internally in extensions to avoid issues with uninitialized or detached proxies.

2011-06-08

  • mvrhov implemented the XML driver for extensions and now there is a full stack of drivers to make your experience even better using these extensions. So far I'm not sure if the same xsd will work with ODM but it will be created in comming month.

ODM MongoDB support

List of extensions which support ODM

  • Translatable
  • Sluggable
  • Timestampable
  • Loggable
  • Sortable

All these extensions can be nested together and mapped in traditional ways - annotations, xml or yaml

Notice: extension tutorial on doctrine blog is outdated, most recent documentation is in doc directory. There is a post introducing to these extensions on doctrine project

You can test these extensions on my blog.

All tutorials for basic usage examples are on my blog also.

Recommendations

  • Use Symfony/Component/ClassLoader/UniversalClassLoader for autoloading these extensions, it will help to avoid triggering fatal error during the check of class_exists

Running the tests:

PHPUnit 3.5 or newer is required. To setup and run tests follow these steps:

  • go to the root directory of extensions
  • run: php bin/vendors.php
  • run: phpunit -c tests
  • optional - run mongodb in background to complete all tests

Contributors: