addElement('text', 'domain', array( 'label' => 'Domain name', 'description' => 'Domain to be replaced', 'required' => true, )); return $form; } public function transform($value) { return preg_replace($this->settings['domain'], "", $value); } }