当前位置: 首页>>代码示例>>PHP>>正文


PHP SC_Helper_DB_Ex::sfGetBasisExists方法代码示例

本文整理汇总了PHP中SC_Helper_DB_Ex::sfGetBasisExists方法的典型用法代码示例。如果您正苦于以下问题:PHP SC_Helper_DB_Ex::sfGetBasisExists方法的具体用法?PHP SC_Helper_DB_Ex::sfGetBasisExists怎么用?PHP SC_Helper_DB_Ex::sfGetBasisExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SC_Helper_DB_Ex的用法示例。


在下文中一共展示了SC_Helper_DB_Ex::sfGetBasisExists方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: action

 /**
  * Page のアクション.
  *
  * @return void
  */
 function action()
 {
     $objDb = new SC_Helper_DB_Ex();
     if ($objDb->sfGetBasisExists()) {
         $this->tpl_mode = 'update';
     } else {
         $this->tpl_mode = 'insert';
     }
     if (!empty($_POST)) {
         $objFormParam = new SC_FormParam_Ex();
         $this->lfInitParam($objFormParam, $_POST);
         $objFormParam->setParam($_POST);
         $objFormParam->convParam();
         $this->arrErr = $this->lfCheckError($objFormParam);
         $post = $objFormParam->getHashArray();
         $this->arrForm = $post;
         if (count($this->arrErr) == 0) {
             switch ($this->getMode()) {
                 // 既存編集
                 case 'update':
                     $this->lfUpdateData($this->arrForm);
                     break;
                     // 新規作成
                 // 新規作成
                 case 'insert':
                     $this->lfInsertData($this->arrForm);
                     break;
                 default:
                     break;
             }
             $this->tpl_onload = "fnCheckLimit('downloadable_days', 'downloadable_days_unlimited', '" . DISABLED_RGB . "'); window.alert('SHOPマスターの登録が完了しました。');";
         }
         if (empty($this->arrForm['regular_holiday_ids'])) {
             $this->arrSel = array();
         } else {
             $this->arrSel = $this->arrForm['regular_holiday_ids'];
         }
     } else {
         $arrCol = $this->lfGetCol();
         $col = SC_Utils_Ex::sfGetCommaList($arrCol);
         $arrRet = $objDb->sfGetBasisData(true, $col);
         $this->arrForm = $arrRet;
         $regular_holiday_ids = explode('|', $this->arrForm['regular_holiday_ids']);
         $this->arrForm['regular_holiday_ids'] = $regular_holiday_ids;
         $this->tpl_onload = "fnCheckLimit('downloadable_days', 'downloadable_days_unlimited', '" . DISABLED_RGB . "');";
     }
 }
开发者ID:nassos9090,项目名称:plugin,代码行数:52,代码来源:LC_Page_Admin_Basis.php

示例2: action

 /**
  * Page のアクション.
  *
  * @return void
  */
 function action()
 {
     $objDb = new SC_Helper_DB_Ex();
     // パラメーター管理クラス
     $objFormParam = new SC_FormParam_Ex();
     // パラメーター情報の初期化
     $this->lfInitParam($objFormParam);
     // POST値の取得
     $objFormParam->setParam($_POST);
     if ($objDb->sfGetBasisExists()) {
         $this->tpl_mode = 'update';
     } else {
         $this->tpl_mode = 'insert';
     }
     if (!empty($_POST)) {
         // 入力値の変換
         $objFormParam->convParam();
         $this->arrErr = $objFormParam->checkError();
         if (count($this->arrErr) == 0) {
             switch ($this->getMode()) {
                 case 'update':
                     $this->lfUpdateData($objFormParam->getHashArray());
                     // 既存編集
                     break;
                 case 'insert':
                     $this->lfInsertData($objFormParam->getHashArray());
                     // 新規作成
                     break;
                 default:
                     break;
             }
             // 再表示
             $this->tpl_onload = "window.alert('ポイント設定が完了しました。');";
         }
     } else {
         $arrCol = $objFormParam->getKeyList();
         // キー名一覧を取得
         $col = SC_Utils_Ex::sfGetCommaList($arrCol);
         $arrRet = $objDb->sfGetBasisData(true, $col);
         $objFormParam->setParam($arrRet);
     }
     $this->arrForm = $objFormParam->getFormParamList();
 }
开发者ID:nassos9090,项目名称:plugin,代码行数:48,代码来源:LC_Page_Admin_Basis_Point.php

示例3: action

 /**
  * Page のアクション.
  *
  * @return void
  */
 function action()
 {
     $objDb = new SC_Helper_DB_Ex();
     $objFormParam = new SC_FormParam_Ex();
     $this->lfInitParam($objFormParam);
     $objFormParam->setParam($_POST);
     if ($objDb->sfGetBasisExists()) {
         $this->tpl_mode = 'update';
     } else {
         $this->tpl_mode = 'insert';
     }
     if (!empty($_POST)) {
         // 入力値の変換
         $objFormParam->convParam();
         $this->arrErr = $this->lfCheckError($objFormParam);
         if (count($this->arrErr) == 0) {
             switch ($this->getMode()) {
                 case 'update':
                     $this->lfUpdateData($objFormParam->getHashArray());
                     // 既存編集
                     break;
                 case 'insert':
                     $this->lfInsertData($objFormParam->getHashArray());
                     // 新規作成
                     break;
                 default:
                     break;
             }
             // 再表示
             $this->tpl_onload = "window.alert('" . t('c_Registration of the Act on Specified Commercial Transactions is complete._01') . "');";
         }
     } else {
         $arrCol = $objFormParam->getKeyList();
         // キー名一覧を取得
         $col = SC_Utils_Ex::sfGetCommaList($arrCol);
         $arrRet = $objDb->sfGetBasisData(true, $col);
         $objFormParam->setParam($arrRet);
     }
     $this->arrForm = $objFormParam->getFormParamList();
 }
开发者ID:Rise-Up-Cambodia,项目名称:Rise-Up,代码行数:45,代码来源:LC_Page_Admin_Basis_Tradelaw.php

示例4: action

 /**
  * Page のアクション.
  *
  * @return void
  */
 public function action()
 {
     $objDb = new SC_Helper_DB_Ex();
     $objFormParam = new SC_FormParam_Ex();
     $this->lfInitParam($objFormParam);
     $objFormParam->setParam($_POST);
     if ($objDb->sfGetBasisExists()) {
         $this->tpl_mode = 'update';
     } else {
         $this->tpl_mode = 'insert';
     }
     if (!empty($_POST)) {
         // 入力値の変換
         $objFormParam->convParam();
         $this->arrErr = $this->lfCheckError($objFormParam);
         if (count($this->arrErr) == 0) {
             switch ($this->getMode()) {
                 case 'update':
                     $this->lfUpdateData($objFormParam->getHashArray());
                     // 既存編集
                     break;
                 case 'insert':
                     $this->lfInsertData($objFormParam->getHashArray());
                     // 新規作成
                     break;
                 default:
                     break;
             }
             // 再表示
             $this->tpl_onload = "window.alert('特定商取引法の登録が完了しました。');";
         }
     } else {
         $arrRet = $objDb->sfGetBasisData();
         $objFormParam->setParam($arrRet);
     }
     $this->arrForm = $objFormParam->getFormParamList();
 }
开发者ID:ryoogata,项目名称:eccube-SQLAzureSupport-plugin,代码行数:42,代码来源:LC_Page_Admin_Basis_Tradelaw.php


注:本文中的SC_Helper_DB_Ex::sfGetBasisExists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。