Exemple #1
0
 /**
  * Get form HTML
  *
  * @return string
  */
 public function getFormHtml()
 {
     if (is_object($this->getChild('cloud_app_settings'))) {
         return $this->getChildHtml('cloud_app_settings');
     }
     return parent::getFormHtml();
 }
Exemple #2
0
 public function getFormHtml()
 {
     $sHtml = parent::getFormHtml();
     $sHtml .= '<script type="text/javascript">aitloyalty_ActionOnRuleDisplayChange();</script>';
     return $sHtml;
 }
Exemple #3
0
 public function getFormHtml()
 {
     $html = $this->getContentForm()->getFormHtml();
     $html .= parent::getFormHtml();
     return $html;
 }
Exemple #4
0
 public function getFormHtml()
 {
     $html = parent::getFormHtml();
     $html .= "\n            <script>\n                require(['cleancms/cleancms'], function(cleancms) {\n                    cleancms.run();\n                });\n            </script>\n        ";
     return $html;
 }