views:

201

answers:

1

Right now I'm using Controller_Template would like to have RESTful URLs though, is it possible to use both the controllers together somehow? Thanks.

+2  A: 

No, PHP does not support multiple inheritance. You will need to extend Controller_Template with another class and manually copy the code form Controller_REST into it.

shadowhand