addElement('text', 'title', array( 'label' => 'Title', 'required' => true, )); $titleColor = new ColorPicker('titleColor', array( 'label' => 'Title Color', 'required' => true, )); $this->addElement($titleColor); $bgColor = new ColorPicker('bgColor', array( 'label' => 'Background Color', 'required' => true, )); $this->addElement($bgColor); return $this; } }