diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-06 13:39:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-06 13:39:54 +0000 |
commit | 6893d4313fc9ad95897557a48ca4eaeacee527aa (patch) | |
tree | 8cfc15a1161686f19c83e40c61b75a25cbb0eb92 | |
parent | fb8025056c39148dc784d529374e3e48ebebb454 (diff) | |
download | brdo-6893d4313fc9ad95897557a48ca4eaeacee527aa.tar.gz brdo-6893d4313fc9ad95897557a48ca4eaeacee527aa.tar.bz2 |
- Patch #931352 by LaurentAjdnik: documentation fixes.
-rw-r--r-- | includes/common.inc | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/includes/common.inc b/includes/common.inc index 824e32751..e626bb8f1 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -7010,15 +7010,16 @@ function entity_create_stub_entity($entity_type, $ids) { * database access if loaded again during the same page request. * * The actual loading is done through a class that has to implement the - * DrupalEntityController interface. By default, DrupalDefaultEntityController - * is used. Entity types can specify that a different class should be used by - * setting the 'controller class' key in hook_entity_info(). These classes can - * either implement the DrupalEntityController interface, or, most commonly, - * extend the DrupalDefaultEntityController class. See node_entity_info() and - * the NodeController in node.module as an example. + * DrupalEntityControllerInterface interface. By default, + * DrupalDefaultEntityController is used. Entity types can specify that a + * different class should be used by setting the 'controller class' key in + * hook_entity_info(). These classes can either implement the + * DrupalEntityControllerInterface interface, or, most commonly, extend the + * DrupalDefaultEntityController class. See node_entity_info() and the + * NodeController in node.module as an example. * * @see hook_entity_info() - * @see DrupalEntityController + * @see DrupalEntityControllerInterface * @see DrupalDefaultEntityController * * @param $entity_type |