Tag: view

  • CakePHP Extending one View from Another


    A new feature in CakePHP 2.1 is the ability to make one view extend another view.  This is a very neat feature; it’s actually quite similar to the concept of Jquery template.  The concept behind it is relatively straight forward.  You define one view that contains common elements that will be updated in another view.  The goal is to avoid duplicating the HTML in a different view.

    (more…)