From bd2cb48520fc4845cfbf58da541f125db0da6e31 Mon Sep 17 00:00:00 2001 From: zYne Date: Wed, 18 Jul 2007 19:54:26 +0000 Subject: [PATCH] --- .../working-with-objects/component-overview/record.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/manual/new/docs/en/working-with-objects/component-overview/record.txt b/manual/new/docs/en/working-with-objects/component-overview/record.txt index 383e19c4d..c975273d7 100644 --- a/manual/new/docs/en/working-with-objects/component-overview/record.txt +++ b/manual/new/docs/en/working-with-objects/component-overview/record.txt @@ -204,6 +204,16 @@ $user->save(); $user->id; // 1 +++++ Mapping custom values + +There might be situations where you want to map custom values to records. For example values that depend on some outer sources and you only want these values to be availible at runtime not persisting those values into database. This can be achieved as follows: + + +$user->mapValue('isRegistered', true); + +$user->isRegistered; // true + + ++++ Serializing