Skip to content
Snippets Groups Projects
Commit 8b95430c authored by Jennifer Hodgdon's avatar Jennifer Hodgdon
Browse files

Issue #2281419 by t0xicCode, joshi.rohit100, SiliconMind: Fix up docs for...

Issue #2281419 by t0xicCode, joshi.rohit100, SiliconMind: Fix up docs for FieldItemInterface methods
parent f742b6fa
No related branches found
No related tags found
No related merge requests found
......@@ -176,24 +176,24 @@ public function view($display_options = array());
/**
* Defines custom presave behavior for field values.
*
* This method is called before either insert() or update() methods, and
* before values are written into storage.
* This method is called before insert() and update() methods, and before
* values are written into storage.
*/
public function preSave();
/**
* Defines custom insert behavior for field values.
*
* This method is called after the save() method, and before values are
* written into storage.
* This method is called during the process of inserting an entity, just
* before values are written into storage.
*/
public function insert();
/**
* Defines custom update behavior for field values.
*
* This method is called after the save() method, and before values are
* written into storage.
* This method is called during the process of updating an entity, just before
* values are written into storage.
*/
public function update();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment