當前位置: 首頁>>代碼示例>>PHP>>正文


PHP HtmlForm::addWidget方法代碼示例

本文整理匯總了PHP中HtmlForm::addWidget方法的典型用法代碼示例。如果您正苦於以下問題:PHP HtmlForm::addWidget方法的具體用法?PHP HtmlForm::addWidget怎麽用?PHP HtmlForm::addWidget使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在HtmlForm的用法示例。


在下文中一共展示了HtmlForm::addWidget方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: writeBody

 function writeBody()
 {
     global $rbk_login, $rbk_lang, $rbk_curr, $rbk_encoding, $rbk_shp_item, $rbk_pass1;
     if (isset($_REQUEST['Status'])) {
         $status = $_REQUEST['Status'];
     } else {
         $status = '';
     }
     //echo $status . '<br />' . "\n";
     if ($status == 'success') {
         $out_summ = floatval($_REQUEST['OutSum']);
         $shp_item = intval($_REQUEST["Shp_item"]);
         $uniteller_crc = strtoupper($_REQUEST["SignatureValue"]);
         $my_crc = strtoupper(md5($_REQUEST['OutSum'] . ':' . $_REQUEST["InvId"] . ':' . $rbk_pass1 . ':Shp_item=' . $shp_item));
         if ($my_crc != $rbk_crc) {
             echo langGet('uniteller_fail');
         } else {
             echo langGet('uniteller_success');
         }
     } elseif ($status == 'fail') {
         echo langGet('uniteller_fail');
     } else {
         //echo 'Рисуем страницу оплаты<br />' . "\n";
         $form = new HtmlForm('uniteller_payment');
         $layout = new GridLayout(3, 2);
         $layout->setCaption('uniteller_payment1');
         // список лицевых счетов
         // если несколько, то предоставить выбор
         $layout->addWidget(new HtmlLabel(langGet('account')));
         $account = new HtmlComboBox('AccountId', $this->accounts);
         $layout->addWidget($account);
         // если один, то не показывать
         $layout->addWidget(new HtmlLabel(langGet('amount_text')));
         //$sum = array(100 => 100, 200 => 200, 300 => 300, 400 => 400,500 => 500,1000 => 1000,1500 => 1500,2000 => 2000);
         ////$sum = array(1 => 1, 100 => 100, 200 => 200, 300 => 300, 400 => 400,500 => 500,1000 => 1000,1500 => 1500,2000 => 2000);
         //$sum = new HtmlComboBox('OutSum', $sum);
         $sum = new HtmlTextField('OutSum');
         $layout->addWidget($sum);
         $layout->addWidget(new HtmlLabel(''));
         $submit = new HtmlSubmit(langGet('new_payment_next'));
         $layout->addWidget($submit);
         $form->addWidget($layout);
         $form->addData('Status', 'pay');
         $form->writeHtml();
         $form = new HtmlForm('payment');
         $layout = new GridLayout(2, 1);
         $layout->addWidget(new HtmlLabel(langGet('uniteller_note')));
         //$aid = $this->accounts[1];
         $layout->addWidget(new HtmlLabel('<A HREF="?module=promised_payment">' . langGet('promised_payment') . '</A>'));
         $form->addWidget($layout);
         $form->writeHtml();
     }
 }
開發者ID:shyokinmv,項目名稱:utm_uniteller,代碼行數:53,代碼來源:48_uniteller.php


注:本文中的HtmlForm::addWidget方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。