* @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 \Zend_Config; 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 * * @return string */ 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; } /** * Get a list of valid datetime formats * * @return array */ public function getValidDateTimeFormats() { $config = $this->getConfiguration(); $global = $config->global; if ($global === null) { $global = new Zend_Config(array()); } $preferences = $this->getUserPreferences(); return array( implode( ' ', array( $preferences->get('app.dateFormat', $global->get('dateFormat', 'd/m/Y')), $preferences->get('app.timeFormat', $global->get('timeFormat', 'g:i A')) ) ) ); } }