object Config_Container::createDirective (
string $name
, string $content
, mixed $attributes
= null
, string $where = 'bottom'
, mixed $target
= null
)
The current item must be a section. This is a helper method that calls createItem()
$name
Name of new directive
$content
Content of new directive
$attributes
Directive attributes
$where
Where to create the new item ('top'
,
'bottom'
, 'before'
,
'after'
)
$target
Required only if 'before'
or
'after'
is used for
$where
object
- reference to new item
Error code | Error value | Meaning | Solution |
---|---|---|---|
" |
This function can not be called statically.
Create a new directive using createDirective()
<?php
$section =& new Config_Container('section', 'conf');
$section->createDirective('user', 'mansion');
?>