* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 * @author Icinga Development Team */ // {{{ICINGA_LICENSE_HEADER}}} namespace Monitoring\Form\Command; use Icinga\Web\Form; use \Zend_Form_Element_Hidden; /** * Simple confirmation command */ class CommandForm extends Form { /** * Create an instance name containing hidden field * @return Zend_Form_Element_Hidden */ private function createInstanceHiddenField() { $field = new Zend_Form_Element_Hidden('instance'); $value = $this->getRequest()->getParam($field->getName()); $field->setValue($value); return $field; } /** * Add elements to this form (used by extending classes) * * @see Form::create */ protected function create() { $this->addElement($this->createInstanceHiddenField()); } /** * Get the author name */ protected function getAuthorName() { if (is_a($this->getRequest(), "Zend_Controller_Request_HttpTestCase")) { return "Test user"; } return $this->getRequest()->getUser()->getUsername(); } /** * Creator for author field * * @return Zend_Form_Element_Hidden */ protected function createAuthorField() { $authorName = $this->getAuthorName(); $authorField = new Zend_Form_Element_Hidden( array( 'name' => 'author', 'label' => t('Author (Your Name)'), 'value' => $authorName, 'required' => true ) ); $authorField->addDecorator( 'Callback', array( 'callback' => function () use ($authorName) { return sprintf('%s', $authorName); } ) ); return $authorField; } }