Bootstrap\View\Helper\BootstrapModalHelper::body PHP Метод

body() публичный Метод

Create / Start the body. If $info is not null, it is used as the body content, otherwize start the body div.
public body ( array | string $info = null, array $options = [] )
$info array | string If string, use as the body content, otherwize works as $options.
$options array Options for the footer div.
    public function body($info = null, $options = [])
    {
        if (is_array($info)) {
            $options = $info;
            $info = null;
        }
        return $this->_createBody($info, $options);
    }