/ */ class Sharethis_Form_Content extends P4Cms_Form_SubForm { /** * Defines the elements of the content sharethis sub-form. * Called automatically when the form object is created. */ public function init() { $this->setLegend('ShareThis'); $this->addElement( 'checkbox', 'showButtons', array( 'label' => 'Show ShareThis Buttons' ) ); // put the checkbox input before the label P4Cms_Form::moveCheckboxLabel($this->getElement('showButtons')); } }