find() public method

Return items that match key/value pair; If no key/value pair specified, return all items
public find ( $key = NULL, $val = NULL ) : array
$key string
$val mixed
return array
 /**
  * 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);
 }
Beispiel #2
0
    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