Habari\FormContainer::set_wrap_each PHP Method

set_wrap_each() public method

Set a sprintf-style string that will wrap each control within this container with markup Use to create, for example,
%s
for each control in the container
public set_wrap_each ( string $wrap = '%s' ) : FormContainer
$wrap string The sprintf-style formatting string
return FormContainer $this
    public function set_wrap_each($wrap = '%s')
    {
        $this->settings['wrap_each'] = $wrap;
        return $this;
    }