Friday, November 26, 2010

cakephp components

Components are block of code that are shared between controllers. It is simply class which we create under " /app/controllers/components/".

class HelloComponent extends Object {
function printhello() {
return "Hello";
}
}

?>

You can include this components in controllers by using below line.
var $components = array('Hello', 'Session');



No comments:

Post a Comment