p2ee/partlets

Base package for the partlet hmvc system

Maintainers

Details

github.com/P2EE/partlets

Source

Issues

Installs: 65

Dependents: 0

Suggesters: 0

Security: 0

Stars: 13

Watchers: 3

Forks: 3

Open Issues: 0

pkg:composer/p2ee/partlets

v0.0.2 2015-06-22 19:05 UTC

This package is not auto-updated.

Last update: 2025-09-27 18:55:47 UTC


README

Partlets are self contained building block for web applications. These components help you to develop your application in a faster and more encapsulated way then the "old" single controller/template per page pattern.

MVC Like

Partlets could be used in a MVC approach when you have one Partlet per page. You can define all you requirements you need to display the content of a page.

HMVC Like

The strength of partlets are the "Preparable" base, so that they can define requirements. A requirement can be another partlet, so that you can build a single page out of different self contained and reusable blocks.

Page Structure with partlets

  +----------------------------------------------------------------+
  | Toplevel Page Partlet                                          |
  |----------------------------------------------------------------|
  |                                                                |
  | +--------------+  +------------------------------------------+ |
  | |Menu Partlet  |  |List Partlet                              | |
  | |--------------|  |------------------------------------------| |
  | |              |  | +--------------------------------------+ | |
  | |              |  | |ListItem Partlet                      | | |
  | |              |  | |--------------------------------------| | |
  | |              |  | |                                      | | |
  | |              |  | |                                      | | |
  | |              |  | |                                      | | |
  | |              |  | +--------------------------------------+ | |
  | |              |  |                                          | |
  | |              |  | +--------------------------------------+ | |
  | |              |  | |ListItem Partlet                      | | |
  | |              |  | |--------------------------------------| | |
  | |              |  | |                                      | | |
  | |              |  | |                                      | | |
  | |              |  | |                                      | | |
  | |              |  | |                                      | | |
  | |              |  | +--------------------------------------+ | |
  | +--------------+  +------------------------------------------+ |
  |                                                                |
  +----------------------------------------------------------------+

Resources