Example #1
0
File: helper.php Project: 01J/topm
 public static function getHiddenFields()
 {
     $params = self::getParams();
     $html = '';
     // Community Builder
     $html .= modPWebContactComprofilerHelper::getHiddenField();
     // JoomSocial
     $html .= modPWebContactJomSocialHelper::getHiddenField();
     // SobiPro
     $html .= modPWebContactSobiProHelper::getHiddenField();
     // CMS and extension version
     if ($params->get('debug') and $info = self::getSystemInfo()) {
         $html .= "\r\n<!-- " . implode(', ', $info) . " -->\r\n";
     }
     return $html;
 }