本文整理匯總了PHP中fRequest::isAjax方法的典型用法代碼示例。如果您正苦於以下問題:PHP fRequest::isAjax方法的具體用法?PHP fRequest::isAjax怎麽用?PHP fRequest::isAjax使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類fRequest
的用法示例。
在下文中一共展示了fRequest::isAjax方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Consumable
// Get objects matching the printer/consumable
$consumable = new Consumable($consumable_id);
// Update cost if present
if ($cost) {
$consumable->setCost($cost);
$consumable->store();
}
// Update consumable
$updated = $consumable->increaseStockBy($qty);
#die(var_export($updated));
// Check status of installation
if ($updated == FALSE) {
fMessaging::create('error', $redirect, $consumable->err);
fURL::redirect($redirect);
} else {
fMessaging::create('success', $redirect, sprintf('The consumable stock for %s has been updated.', $consumable->getName()));
fURL::redirect($redirect);
}
} catch (fNotFoundException $e) {
fMessaging::create('error', $redirect, 'The requested object with ID ' . $id . ', could not be found.');
fURL::redirect($redirect);
}
} else {
// Get consumable object from ID
if ($consumable_id != NULL) {
$c = Consumable::getOne($consumable_id);
}
// No POSTed data, show form (based on request method)
$view = fRequest::isAjax() ? 'ajax.php' : 'simple.php';
include 'views/stock/' . $view;
}