From aa98250206567397215724d8da2254a4aa6617bd Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 26 Jun 2007 09:21:27 +0000 Subject: [PATCH] docs for soft-delete plugin --- manual/new/docs/en/plugins.txt | 46 ++++++++++++++++++++++++++++------ 1 file changed, 39 insertions(+), 7 deletions(-) diff --git a/manual/new/docs/en/plugins.txt b/manual/new/docs/en/plugins.txt index dd8894723..edfa7fbec 100644 --- a/manual/new/docs/en/plugins.txt +++ b/manual/new/docs/en/plugins.txt @@ -1,11 +1,43 @@ -++ Eventlisteners -++ Validators ++ View ++ Cache ++ Locking Manager -++ Db_Profiler +++ Connection Profiler ++ Hook -++ Query -++ RawSql -++ Db -++ Exceptions +++ Soft-delete + +Soft-delete is a very simple plugin for achieving the following behaviour: when a record is deleted its not removed from database. Usually the record contains some special field like 'deleted' which tells the state of the record (deleted or alive). + +The following code snippet shows what you need in order to achieve this kind of behaviour. Notice how we define two event hooks: preDelete and postDelete. Also notice how the preDelete hook skips the actual delete-operation with skipOperation() call. For more info about the event hooks see the Event listener section. + + +class SoftDeleteTest extends Doctrine_Record +{ + public function setTableDefinition() + { + $this->hasColumn('name', 'string', null, array('primary' => true)); + $this->hasColumn('deleted', 'boolean', 1); + } + public function preDelete($event) + { + $event->skipOperation(); + } + public function postDelete($event) + { + $this->deleted = true; + $this->save(); + } +} + + +Now lets put the plugin in action: + + + +// save a new record +$record = new SoftDeleteTest(); +$record->name = 'new record'; +$record->save(); + +$record->delete(); +var_dump($record->deleted); // true +