• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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