CakePHP: Subclassing Models
Spotted in the comments on the Bakery:
App::Import (‘model’, ‘User’);
class Seller extends User {var $name = ‘Seller’;
}
Thanks to Przemysław Sitek for this useful snippet!

Spotted in the comments on the Bakery:
App::Import (‘model’, ‘User’);
class Seller extends User {var $name = ‘Seller’;
}
Thanks to Przemysław Sitek for this useful snippet!