本文整理汇总了PHP中ApiException::evaluateErrors方法的典型用法代码示例。如果您正苦于以下问题:PHP ApiException::evaluateErrors方法的具体用法?PHP ApiException::evaluateErrors怎么用?PHP ApiException::evaluateErrors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ApiException
的用法示例。
在下文中一共展示了ApiException::evaluateErrors方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: post
/**
* Resource methods
*/
public function post()
{
// Just a dummy redirect to prevent errors in checkout/reward/reward.
$this->request->post['redirect'] = 'checkout/cart';
$data = parent::getInternalRouteData('checkout/reward/reward', true);
ApiException::evaluateErrors($data);
}
示例2: put
/**
* Resource methods
*/
public function put($id = NULL)
{
$this->request->convertBoolToYesNoRadioValue('newsletter');
$this->request->server['REQUEST_METHOD'] = 'POST';
$data = parent::getInternalRouteData('account/newsletter');
ApiException::evaluateErrors($data);
}
示例3: post
/**
* Resource methods
*/
public function post()
{
$data = parent::getInternalRouteData('tool/upload', true);
ApiException::evaluateErrors($data);
$file = array("file" => $this->getFile($data));
$this->response->setOutput($file);
}
示例4: get
/**
* Resource methods
*/
public function get()
{
$data = parent::getInternalRouteData('checkout/cart');
ApiException::evaluateErrors($data, false);
$cart = array('cart' => $this->getCart($data));
$this->response->setOutput($cart);
}
示例5: post
/**
* Resource methods
*/
public function post()
{
$this->request->setDefaultParameters($this->defaultParameters);
$this->request->convertBoolToCheckbox('agree');
$this->request->convertBoolToYesNoRadioValue('newsletter');
$data = parent::getInternalRouteData('account/register');
ApiException::evaluateErrors($data);
}
示例6: post
/**
* Resource methods
*/
public function post()
{
$this->user->logout();
unset($this->session->data['token']);
$data = array('success' => true);
$this->response->setOutput($data);
ApiException::evaluateErrors($data);
}
示例7: delete
public function delete($id = NULL)
{
if ($id !== NULL) {
$this->request->get['remove'] = $id;
}
$data = parent::getInternalRouteData('account/wishlist');
ApiException::evaluateErrors($data);
}
示例8: post
public function post()
{
$this->request->setDefaultParameters($this->defaultParameters);
$data = parent::getInternalRouteData('checkout/shipping_method/save', true);
if (isset($data['redirect'])) {
$this->redirect($data['redirect']);
}
ApiException::evaluateErrors($data);
}
示例9: put
public function put()
{
$this->request->setDefaultParameters($this->defaultParameters);
$this->request->server['REQUEST_METHOD'] = 'POST';
$data = parent::getInternalRouteData('account/edit');
ApiException::evaluateErrors($data);
$account = array('account' => $this->getAccount($data));
$this->response->setOutput($account);
}
示例10: get
/**
* Resource methods
*/
public function get()
{
$data = parent::getInternalRouteData('checkout/confirm');
if (isset($data['redirect'])) {
$this->redirect($data['redirect']);
}
ApiException::evaluateErrors($data);
$order = array('order' => $this->getOrder($data));
$this->response->setOutput($order);
}
示例11: post
/**
* Resource methods
*/
public function post()
{
$this->request->setDefaultParameters($this->defaultParameters);
$this->request->convertBoolToCheckbox('shipping_address');
$data = parent::getInternalRouteData('checkout/guest/save', true);
if (isset($data['redirect'])) {
$this->redirect($data['redirect']);
}
ApiException::evaluateErrors($data);
}
示例12: delete
public function delete($id)
{
$cartItemKeys = explode(',', $id);
foreach ($cartItemKeys as $cartItemKey) {
$this->request->post['key'] = $cartItemKey;
$data = parent::getInternalRouteData('checkout/cart/remove', true);
ApiException::evaluateErrors($data);
}
// Return cart
$this->request->post = array();
$this->get();
}
示例13: post
/**
* Resource methods
*/
public function post()
{
$user = $this->user;
$data = array();
if (isset($this->request->post['username']) && isset($this->request->post['username']) && $user->login($this->request->post['username'], $this->request->post['password'])) {
$data['user'] = array('username' => $user->getUserName(), 'user_id' => $user->getId(), 'user_group_id' => $user->getGroupId(), 'vendor_id' => $user->getVP());
} else {
// Need to keep the static messages in a separate file (Keep it in API end ?)
$data['errors'] = array('code' => "error_warning", 'message' => "Warning: No match for Username and/or Password.");
}
$this->response->setOutput($data);
ApiException::evaluateErrors($data);
}
示例14: post
/**
* Resource methods
*/
public function post()
{
// Validate if customer is logged in. This is needed because in the parent::validate the checkout/checkout route serves two purposes.
if (!$this->customer->isLogged()) {
throw new ApiException(ApiResponse::HTTP_RESPONSE_CODE_BAD_REQUEST, ErrorCodes::ERRORCODE_USER_NOT_LOGGED_IN, ErrorCodes::getMessage(ErrorCodes::ERRORCODE_USER_NOT_LOGGED_IN));
}
$this->request->setDefaultParameters($this->defaultParameters);
$data = parent::getInternalRouteData('checkout/shipping_address/save', true);
if (isset($data['redirect'])) {
$this->redirect($data['redirect']);
}
ApiException::evaluateErrors($data);
}
示例15: getRecurringDescription
public function getRecurringDescription($id = NULL)
{
$this->request->post['product_id'] = $id;
$this->request->post['recurring_id'] = $this->request->get['recurring_id'];
if (isset($this->request->get['quantity'])) {
$this->request->post['quantity'] = $this->request->get['quantity'];
}
$data = parent::getInternalRouteData('product/product/getRecurringDescription', true);
ApiException::evaluateErrors($data);
if (isset($data['success'])) {
$product = array('recurring_description' => $data['success']);
$this->response->setOutput($product);
} else {
// No description found.
throw new ApiException(ApiResponse::HTTP_RESPONSE_CODE_NOT_FOUND, ErrorCodes::ERRORCODE_RECURRING_DESCRIPTION_NOT_FOUND, ErrorCodes::getMessage(ErrorCodes::ERRORCODE_RECURRING_DESCRIPTION_NOT_FOUND));
}
}