Example #1
0
 /**
  * Render the form.
  *
  * @param string $action Target action
  * @param array $arguments Arguments
  * @param string $controller Target controller
  * @param string $extensionName Target Extension Name (without "tx_" prefix and no underscores). If NULL the current extension name is used
  * @param string $pluginName Target plugin. If empty, the current plugin name is used
  * @param integer $pageUid Target page uid
  * @param mixed $object Object to use for the form. Use in conjunction with the "property" attribute on the sub tags
  * @param boolean $noCache set this to disable caching for the target page. You should not need this.
  * @param boolean $noCacheHash set this to supress the cHash query parameter created by TypoLink. You should not need this.
  * @param string $section The anchor to be added to the action URI (only active if $actionUri is not set)
  * @param string $format The requested format (e.g. ".html") of the target page (only active if $actionUri is not set)
  * @param array $additionalParams additional action URI query parameters that won't be prefixed like $arguments (overrule $arguments) (only active if $actionUri is not set)
  * @param boolean $absolute If set, an absolute action URI is rendered (only active if $actionUri is not set)
  * @param boolean $addQueryString If set, the current query parameters will be kept in the action URI (only active if $actionUri is not set)
  * @param array $argumentsToBeExcludedFromQueryString arguments to be removed from the action URI. Only active if $addQueryString = TRUE and $actionUri is not set
  * @param string $fieldNamePrefix Prefix that will be added to all field names within this form. If not set the prefix will be tx_yourExtension_plugin
  * @param string $actionUri can be used to overwrite the "action" attribute of the form tag
  * @param string $objectName name of the object that is bound to this form. If this argument is not specified, the name attribute of this form is used to determine the FormObjectName
  * @return string rendered form
  */
 public function render($action = NULL, array $arguments = array(), $controller = NULL, $extensionName = NULL, $pluginName = NULL, $pageUid = NULL, $object = NULL, $noCache = FALSE, $noCacheHash = FALSE, $section = '', $format = '', array $additionalParams = array(), $absolute = FALSE, $addQueryString = FALSE, array $argumentsToBeExcludedFromQueryString = array(), $fieldNamePrefix = NULL, $actionUri = NULL, $objectName = NULL)
 {
     $this->viewHelperVariableContainer->add('MatoIlic\\T3Chimp\\ViewHelpers\\FormViewHelper', 'renderedProperties', array());
     $this->arguments = new WritableArguments($this->arguments);
     $this->tag->addAttribute('id', 't3chimp-form-' . $object->getListId());
     parent::render($action, $arguments, $controller, $extensionName, $pluginName, $pageUid, $object, $this->arguments['pageType'], $noCache, $noCacheHash, $section, $format, $additionalParams, $absolute, $addQueryString, $argumentsToBeExcludedFromQueryString, $fieldNamePrefix, $actionUri, $objectName);
     if (!$object->getDisableCaptcha()) {
         $prefix = $this->getFieldNamePrefix();
         $content = $this->tag->getContent();
         $content .= '<input type="hidden" name="' . $prefix . '[cc]" data-special="cc" value="0">';
         $content .= '<input type="hidden" name="' . $prefix . '[ccts]" data-special="ccts" value="0">';
         $content .= '<div style="display: none;"><input type="text" name="' . $prefix . '[cchp]" data-special="cchp"></div>';
         $this->tag->setContent($content);
         $this->tag->addAttribute('data-cc', $object->getCaptchaCode());
     }
     return $this->tag->render();
 }
 /**
  * Render the form.
  *
  * @param string $action Target action
  * @param array $arguments Arguments
  * @param string $controller Target controller
  * @param string $extensionName Target Extension Name (without "tx_" prefix and no underscores). If NULL the current extension name is used
  * @param string $pluginName Target plugin. If empty, the current plugin name is used
  * @param integer $pageUid Target page uid
  * @param mixed $object Object to use for the form. Use in conjunction with the "property" attribute on the sub tags
  * @param integer $pageType Target page type
  * @param boolean $noCache set this to disable caching for the target page. You should not need this.
  * @param boolean $noCacheHash set this to supress the cHash query parameter created by TypoLink. You should not need this.
  * @param string $section The anchor to be added to the action URI (only active if $actionUri is not set)
  * @param string $format The requested format (e.g. ".html") of the target page (only active if $actionUri is not set)
  * @param array $additionalParams additional action URI query parameters that won't be prefixed like $arguments (overrule $arguments) (only active if $actionUri is not set)
  * @param boolean $absolute If set, an absolute action URI is rendered (only active if $actionUri is not set)
  * @param boolean $addQueryString If set, the current query parameters will be kept in the action URI (only active if $actionUri is not set)
  * @param array $argumentsToBeExcludedFromQueryString arguments to be removed from the action URI. Only active if $addQueryString = TRUE and $actionUri is not set
  * @param string $fieldNamePrefix Prefix that will be added to all field names within this form. If not set the prefix will be tx_yourExtension_plugin
  * @param string $actionUri can be used to overwrite the "action" attribute of the form tag
  * @param string $objectName name of the object that is bound to this form. If this argument is not specified, the name attribute of this form is used to determine the FormObjectName
  * @param string $resultTarget target where the results will be loaded
  * @param string $loaders target where the loader will be shown
  * @return string rendered form
  */
 public function render($action = NULL, array $arguments = array(), $controller = NULL, $extensionName = NULL, $pluginName = NULL, $pageUid = NULL, $object = NULL, $pageType = 0, $noCache = FALSE, $noCacheHash = FALSE, $section = '', $format = '', array $additionalParams = array(), $absolute = FALSE, $addQueryString = FALSE, array $argumentsToBeExcludedFromQueryString = array(), $fieldNamePrefix = NULL, $actionUri = NULL, $objectName = NULL, $resultTarget = NULL, $loaders = NULL)
 {
     $this->renderHijaxDataAttributes($action, $arguments, $controller, $extensionName, $pluginName);
     $this->hijaxEventDispatcher->setIsHijaxElement(true);
     if ($resultTarget) {
         $this->tag->addAttribute('data-hijax-result-target', $resultTarget);
     } else {
         /* @var $listener \EssentialDots\ExtbaseHijax\Event\Listener */
         $listener = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\\Object\\ObjectManager')->get('EssentialDots\\ExtbaseHijax\\MVC\\Dispatcher')->getCurrentListener();
         $this->tag->addAttribute('data-hijax-result-target', "jQuery(this).parents('.hijax-element[data-hijax-listener-id=\"" . $listener->getId() . "\"]')");
         $this->tag->addAttribute('data-hijax-result-wrap', 'false');
     }
     if ($loaders) {
         $this->tag->addAttribute('data-hijax-loaders', $loaders);
     }
     parent::render($action, $arguments, $controller, $extensionName, $pluginName, $pageUid, $object, $pageType, $noCache, $noCacheHash, $section, $format, $additionalParams, $absolute, $addQueryString, $argumentsToBeExcludedFromQueryString, $fieldNamePrefix, $actionUri, $objectName);
     $this->tag->setContent('<div class="hijax-content">' . $this->tag->getContent() . '</div><div class="hijax-loading"></div>');
     return $this->tag->render();
 }