Enabled having a default Model instead of needing Model_* files for each table.
This commit is contained in:
parent
1e88be0e21
commit
53873600c1
@ -514,6 +514,17 @@ class Kohana_Core {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// Enable finding a default Model
|
||||
if (preg_match('/^Model_/',$class) AND $path = Kohana::find_file($directory,'Model/DEFAULT')) {
|
||||
// Load the class file
|
||||
require $path;
|
||||
|
||||
Model_DEFAULT::_default($class);
|
||||
|
||||
// Class has been found
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// Class is not in the filesystem
|
||||
return FALSE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user