本文整理汇总了PHP中WishList::get_for_user方法的典型用法代码示例。如果您正苦于以下问题:PHP WishList::get_for_user方法的具体用法?PHP WishList::get_for_user怎么用?PHP WishList::get_for_user使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WishList
的用法示例。
在下文中一共展示了WishList::get_for_user方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testMultipleLists
public function testMultipleLists()
{
WishList::set_current(null);
$m1 = $this->objFromFixture('Member', 'm1');
$m2 = $this->objFromFixture('Member', 'm2');
$m1->logIn();
$p1 = $this->objFromFixture('Product', 'p1');
$p2 = $this->objFromFixture('Product', 'p2');
$p3 = $this->objFromFixture('Product', 'p3');
// should be able to retrieve a list of lists
$allLists = WishList::get_for_user();
$this->assertNotNull($allLists);
$this->assertTrue($allLists instanceof DataList);
// should initially be 0 lists
$this->assertEquals(0, WishList::get_for_user()->count());
$this->assertEquals(0, WishList::get_for_user($m2)->count());
// current method should create one list
$l1 = WishList::current();
$l1->write();
$l1->addBuyable($p1);
//Debug::dump(array($l1, WishList::get_for_user()->sql(), WishList::get_for_user()->count(), WishList::get_for_user()->getIDList()));
$this->assertEquals(1, WishList::get_for_user()->count());
$this->assertEquals(0, WishList::get_for_user($m2)->count());
// after manually creating a list there should be two lists
$l2 = new WishList(array('OwnerID' => $m1->ID, 'Title' => 'Christmas'));
$l2->write();
$this->assertEquals(2, WishList::get_for_user()->count());
// after adding a product to one list, it should not be present in the other one
// but should still report that it is in a list
$l2->addBuyable($p2);
$this->assertTrue($p1->IsInWishList());
$this->assertTrue($l1->hasBuyable($p1));
$this->assertFalse($l2->hasBuyable($p1));
$this->assertTrue($p2->IsInWishList());
$this->assertFalse($l1->hasBuyable($p2));
$this->assertTrue($l2->hasBuyable($p2));
$this->assertFalse($p3->IsInWishList());
$this->assertFalse($l1->hasBuyable($p3));
$this->assertFalse($l2->hasBuyable($p3));
// after creating a list for the a different user and adding
// an item to that list, the item should not report that it is
// in a list and should not be present in any of the other lists
$l3 = new WishList(array('OwnerID' => $m2->ID, 'Title' => 'Christmas for someone else'));
$l3->write();
$l3->addBuyable($p3);
$this->assertEquals(2, WishList::get_for_user()->count());
$this->assertEquals(1, WishList::get_for_user($m2)->count());
$this->assertFalse($p3->IsInWishList());
$this->assertFalse($l1->hasBuyable($p3));
$this->assertFalse($l2->hasBuyable($p3));
// Buyable should be able to exist in two lists at once
$l2->addBuyable($p1);
$this->assertTrue($p1->IsInWishList());
$this->assertTrue($l1->hasBuyable($p1));
$this->assertTrue($l2->hasBuyable($p1));
// removing an item from one list should not remove it from the other
$l1->removeBuyable($p1);
$this->assertTrue($p1->IsInWishList());
$this->assertFalse($l1->hasBuyable($p1));
$this->assertTrue($l2->hasBuyable($p1));
// after removing item from both lists it should report as not being in a list
$l2->removeBuyable($p1);
$this->assertFalse($p1->IsInWishList());
$this->assertFalse($l1->hasBuyable($p1));
$this->assertFalse($l2->hasBuyable($p1));
}
示例2: AllLists
/**
* @return DataList
*/
public function AllLists()
{
return WishList::get_for_user();
}