13 lines
407 B
Markdown
Raw Normal View History

2013-09-24 13:09:53 +02:00
# Composite
# Purpose
To treat a group of objects the same way as a single instance of the object.
# Examples
* a form class instance handles all its form elements like a single instance of the form, when `render()` is called, it
subsequently runs through all its child elements and calls `render()` on them
2013-09-24 13:09:53 +02:00
* `Zend_Config`: a tree of configuration options, each one is a `Zend_Config` object itself