• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

Question Tabs inside form

Frank.P

Regular Pleskian
I am try to create a extension and I need create inside form 2 tabs


1645131914161.png


How can I create tabs like image attached inside code
public function init()
{
parent::init();

$this->addElement('checkbox', static::pFM_Status, [
'label' => pm_Locale::lmsg('Tab1StatusDesc'),
'value' => pm_Settings::get(static::pFM_Status),
'required' => false,
'validators' => [],
]);


$this->addControlButtons([
'cancelLink' => pm_Context::getModulesListUrl(),
]);
}
 
Back
Top