Container
class Container extends Component implements IContainer
ComponentContainer is default implementation of IContainer.
Constants
private NameRegexp |
|
Properties
Iterator read-only | $components |
Methods
Adds the component to the container.
Returns component specified by name or path.
Component factory. Delegates the creation of components to a createComponent
Iterates over descendants components.
Descendant can override this method to disallow insert a child by throwing an Nette\InvalidStateException.
Object cloning.
Is container cloning now?
Details
at line 39
IContainer
addComponent(IComponent $component, string|null $name, string|null $insertBefore = null)
Adds the component to the container.
at line 98
void
removeComponent(IComponent $component)
Removes the component from the container.
at line 114
final IComponent|null
getComponent(string $name, bool $throw = true)
Returns component specified by name or path.
at line 159
protected IComponent|null
createComponent(string $name)
Component factory. Delegates the creation of components to a createComponent
at line 185
final Iterator
getComponents(bool $deep = false, string|null $filterType = null)
Iterates over descendants components.
at line 206
protected void
validateChildComponent(IComponent $child)
Descendant can override this method to disallow insert a child by throwing an Nette\InvalidStateException.
at line 217
__clone()
Object cloning.
at line 238
final Container|null
_isCloning()
internal |
Is container cloning now?