You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php// Place a close button in the headerecho$this->sxbModal()->setCloseButton(true);
// Put a nice title on itecho$this->sxbModal()->setHeader('<h3>Hello,</h3>');
// Put a button in the footerecho$this->sxbModal()->setFooter($this->sxbButton()->setLabel('I know')->primary());
// Set content explicitlyecho$this->sxbModal()->setContent("I'm a modal");
// Combine all the aboveecho$this->sxbModal()
->setContent("I'm a modal")
->setFooter($this->sxbButton()->setLabel('I know')->primary());
->setHeader('<h3>Hello,</h3>')
->setCloseButton(true);
// Same, but in less codeecho$this->sxbModal(
"I'm a modal",
$this->sxbButton()->setLabel('I know')->primary(),
'<h3>Hello,</h3>'
)->setCloseButton(true);
// Data attributesecho$this->sxbModal()
->setBackdrop('static')
->setKeyboard('false')
->setShow('false')
->setRemote('remote.html');
?>