Eğer herhangi bir model ile ilişkisi olmayan bir controller yazmak isterseniz, aşağıdaki örneğe benzer bir yol takip etmelisiniz.
// tested with CakePHP r1892
class MyController extends AppController
{
// var $uses = null; works too
var $uses = array();
function index(){
}
}
Eğer “var $uses = array();” yapmazsanız, “missing model” hatası alırsınız.
Hiç yorum yok:
Yorum Gönder