[eluser]peterbz[/eluser]
Is it possible to have more than one subclass of the Model (and other core classes of CI). In the documentation, it says that the subclass must be prefixed with MY_ which means you can only have one subclass of Model (MY_Model). What if I want to have several subclasses of the model.
This is because I would like to have different types of Models. For example, I want to create 2 subclasses of the model: Listing_Model and Vendor_Model. Listing_Model will be extended by classes Car_Listing_Model, Truck_Listing_Model, etc and Vendor_Model will be extended by Dealership_Model, Part_Shop_Model, etc
In other words, I want to extend from a model I've created. So in the above example, Listing_Model extends Model and Car_Listing_Model extends Listing_Model.