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


PHP Gateway::save方法代码示例

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


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

示例1: create

 public function create($aData)
 {
     $oConnection = Propel::getConnection(GatewayPeer::DATABASE_NAME);
     try {
         $sGatewayUID = G::generateUniqueID();
         $aData['GAT_UID'] = $sGatewayUID;
         $oGateway = new Gateway();
         $oGateway->fromArray($aData, BasePeer::TYPE_FIELDNAME);
         if ($oGateway->validate()) {
             $oConnection->begin();
             $iResult = $oGateway->save();
             $oConnection->commit();
             return $sGatewayUID;
         } else {
             $sMessage = '';
             $aValidationFailures = $oGateway->getValidationFailures();
             foreach ($aValidationFailures as $oValidationFailure) {
                 $sMessage .= $oValidationFailure->getMessage() . '<br />';
             }
             throw new Exception('The registry cannot be created!<br />' . $sMessage);
         }
     } catch (Exception $oError) {
         $oConnection->rollback();
         throw $oError;
     }
 }
开发者ID:emildev35,项目名称:processmaker,代码行数:26,代码来源:Gateway.php

示例2: postStore

 /**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function postStore()
 {
     $input = Input::only('user_id', 'gateway_name', 'gateway_address');
     $input['prefix'] = $this->generate_prefix();
     $rules = array('gateway_name' => 'required|min:3', 'gateway_address' => 'required|ip_hostname|unique:gateways,gateway_address,NULL,id,deleted_at,NULL', 'prefix' => 'unique:gateways,prefix');
     $v = Validator::make($input, $rules);
     if ($v->fails()) {
         return Output::push(array('path' => 'gateway/add', 'errors' => $v, 'input' => TRUE));
     }
     $gateway = new Gateway(['user_id' => Auth::user()->status == 2 ? $input['user_id'] : Auth::user()->id, 'gateway_name' => $input['gateway_name'], 'gateway_address' => $input['gateway_address'], 'prefix' => $input['prefix']]);
     $gateway->save();
     Event::fire('logger', array(array('gateway_add', array('id' => $gateway->id, 'gateway_name' => $gateway->gateway), 2)));
     if ($gateway->id) {
         return Output::push(array('path' => 'gateway', 'messages' => array('success' => _('You have added gateway successfully'))));
     } else {
         return Output::push(array('path' => 'gateway/add', 'messages' => array('fail' => _('Fail to add gateway')), 'input' => TRUE));
     }
 }
开发者ID:digideskio,项目名称:voip-id,代码行数:23,代码来源:GatewayController.php


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