Server IP : 103.118.17.23 / Your IP : 216.73.216.188 Web Server : Microsoft-IIS/10.0 System : Windows NT RESELLERPLESK22 10.0 build 20348 (Windows Server 2016) AMD64 User : IWAM_plesk(default) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/vhosts/mesa.org.in/httpdocs/assets/_core/php/examples/communication/ |
Upload File : |
<?php require_once('../qcubed.inc.php'); class ExamplesForm extends QForm { protected $btnEs; protected $btnEn; // Initialize our Controls during the Form Creation process protected function Form_Create() { // let's change translation class require_once ('sample_translator.class.php'); QI18n::$DefaultTranslationClass = 'QSampleTranslation'; // Set default language to French QApplication::$LanguageCode = 'fr'; QApplication::$CountryCode = null; QI18n::Initialize(); } } // Run the Form we have defined // The QForm engine will look to intro.tpl.php to use as its HTML template include file ExamplesForm::Run('ExamplesForm'); ?>