staticGet for sub-Managed_DataObject classes now calls parent

The parent class for our database objects, Managed_DataObject, has a
dynamically assigned class in staticGet which objects get put into,
leaving us with less code to do the same thing.

We will probably have to move away from the DB_DataObject 'staticGet'
call as it is nowadays deprecated.
This commit is contained in:
Mikael Nordfeldth
2013-08-12 19:46:44 +02:00
parent d115cddfb7
commit 1a9a8ea730
58 changed files with 0 additions and 216 deletions

View File

@@ -16,10 +16,6 @@ class Notice_source extends Managed_DataObject
public $created; // datetime() not_null
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
/* Static get */
function staticGet($k,$v=null)
{ return Memcached_DataObject::staticGet('Notice_source',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE