dbFields = array(
'label' => 'Static Pages',
'homeLink' => true
);
}
// Method called on the settings of the plugin on the admin area
public function form()
{
global $L;
$html = '
';
// Print the label if not empty
$label = $this->getValue('label');
if (!empty($label)) {
$html .= '
' . $label . '
';
}
$html .= '
';
$html .= MenuHelper::getStatics(-1, $this->getValue('homeLink'));
$html .= '
';
$html .= '
';
return $html;
}
}