What is the best way to create regions in your layout similar to Wordpress's Widgets or Drupal Blocks? What is the best practice method of doing that in CakePHP?
|
feedback
|
|
If by regions you mean a special "content container" (never used WP/Drupal), then it's very easy. There are several ways to accomplish this, but the one that came to my mind first was this:
Note: There are probably better ways to accomplish what you want, this is just the first that came to my mind. I'd recommend some pencil-and-paper planning before you actually code anything, it will improve your chances of finding the best way for your app. | |||
|
feedback
|
|
I created a Sidebar Helper recently that you might find useful. You define the content of the boxes in Cake elements, and then add them by calling ...
... this would render the content of views/elements/my_sidebox_element Alternatively you can specify te content of a box 'inline':
The in your layout file call
... and each of your boxes will be rendered as divs Technically speaking this doesn't need to be used as a 'SideBar' - it ultimately depends on how you render the layout with CSS. See the documented code for more details: | |||
|
feedback
|