$_entities
$_entities : array
here's where you store the name of the file of your entity class omit the .php bit - because you have to store a .ini file too and it has to have the same name as the class file, except for ending
This factory is used to create entity objects like Group or Member All MVC-model derived classes are born with an instance of it
create() : mixed
Creates an entity object based on input args and returns it Passes any arguments to the entity when creating it NOTE: to pass arguments to this function, pass them as normal! I.E.: $this->_entity_factory('Group', $other_parameter, $other_parameter, etc);
An entity based on RoxEntityBase or false on fail