浏览代码

Merge pull request #1487 from dbu/document-alter-new-instance

mention alterNewInstance in extension doc
Thomas 12 年之前
父节点
当前提交
d16041bdcc
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Resources/doc/reference/extensions.rst

+ 2 - 2
Resources/doc/reference/extensions.rst

@@ -3,8 +3,8 @@ Extensions
 
 Admin extensions allow you to add or change features of one or more Admin instances. To create an extension your class
 must implement the interface ``Sonata\AdminBundle\Admin\AdminExtensionInterface`` and be registered as a service. The
-interface defines a number of functions which you can use to customize the edit form, list view, form validation and
-other admin features.
+interface defines a number of functions which you can use to customize the edit form, list view, form validation,
+alter newly created objects and other admin features.
 
 .. code-block:: php