本文整理汇总了PHP中Basket::find方法的典型用法代码示例。如果您正苦于以下问题:PHP Basket::find方法的具体用法?PHP Basket::find怎么用?PHP Basket::find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Basket
的用法示例。
在下文中一共展示了Basket::find方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testFindAllWithConditionInChildQuery
/**
* testFindAllWithConditionInChildQuery
*
* @return void
*/
public function testFindAllWithConditionInChildQuery()
{
$this->loadFixtures('Basket', 'FilmFile');
$TestModel = new Basket();
$recursive = 3;
$result = $TestModel->find('all', compact('recursive'));
$expected = array(array('Basket' => array('id' => 1, 'type' => 'nonfile', 'name' => 'basket1', 'object_id' => 1, 'user_id' => 1), 'FilmFile' => array('id' => '', 'name' => '')), array('Basket' => array('id' => 2, 'type' => 'file', 'name' => 'basket2', 'object_id' => 2, 'user_id' => 1), 'FilmFile' => array('id' => 2, 'name' => 'two')));
$this->assertEquals($expected, $result);
}
示例2: foreach
foreach ($cart as $item) {
$subtotal += $item['amount'];
}
$f3->set('cartitems', $cart);
$shipping = "5.00";
$f3->set('itemcount', $basket->count());
$f3->set('cartitems', $cart);
$f3->set('subtotal', sprintf("%01.2f", $subtotal));
$f3->set('shipping', sprintf("%01.2f", $shipping));
$f3->set('ordertotal', sprintf("%01.2f", $subtotal + $shipping));
$f3->set('shippingaddress', $shippingaddress);
echo \Template::instance()->render('review.html');
});
$f3->route('GET /ecm', function ($f3) {
$basket = new \Basket();
$cartitems = $basket->find();
$paypal = new PayPal();
$subtotal = $paypal->copyBasket($cartitems);
$shippingaddress = unserialize($f3->get('SESSION.address'));
$paypal->setShippingAddress($shippingaddress['name'], $shippingaddress['address1'], $shippingaddress['address2'], $shippingaddress['city'], $shippingaddress['state'], $shippingaddress['postcode'], $shippingaddress['country']);
$shipping = "5.00";
$paypal->setShippingAmt($shipping);
$ordertotal = $subtotal + $shipping;
$options = array('ADDROVERRIDE' => '1', 'RETURNURL' => 'http://yourdomain.tld/complete', 'BRANDNAME' => 'F3PYPL');
$result = $paypal->create("Sale", "EUR", $ordertotal, $options);
// Reroute buyer to PayPal with resulting transaction token
if ($result['ACK'] != 'Success') {
// Handle API error code
die('Error with API call - ' . $result["L_ERRORCODE0"]);
} else {
// Redirect Buyer to PayPal