本文整理汇总了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;
}
}
示例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));
}
}