@@ 772-787 (lines=16) @@ | ||
769 | } |
|
770 | } |
|
771 | ||
772 | class Horizon_Local extends Local_Plugin |
|
773 | { |
|
774 | public function __construct(AcceptanceTester $I) |
|
775 | { |
|
776 | parent::__construct($I, 'Horizon'); |
|
777 | $this->tables[] = 'dtb_dash'; |
|
778 | $this->columns[] = 'dtb_cart.is_horizon'; |
|
779 | $this->columns[] = 'dtb_cart.dash_id'; |
|
780 | $this->traits['\Plugin\Horizon\Entity\CartTrait'] = 'Cart'; |
|
781 | } |
|
782 | ||
783 | public static function start(AcceptanceTester $I) |
|
784 | { |
|
785 | return new self($I); |
|
786 | } |
|
787 | } |
|
788 | ||
789 | class Horizon_Store extends Store_Plugin |
|
790 | { |
|
@@ 871-886 (lines=16) @@ | ||
868 | } |
|
869 | } |
|
870 | ||
871 | class Boomerang_Store extends Store_Plugin |
|
872 | { |
|
873 | public function __construct(AcceptanceTester $I) |
|
874 | { |
|
875 | parent::__construct($I, 'Boomerang'); |
|
876 | $this->tables[] = 'dtb_bar'; |
|
877 | $this->columns[] = 'dtb_cart.is_boomerang'; |
|
878 | $this->columns[] = 'dtb_cart.bar_id'; |
|
879 | $this->traits['\Plugin\Boomerang\Entity\CartTrait'] = 'Cart'; |
|
880 | } |
|
881 | ||
882 | public static function start(AcceptanceTester $I) |
|
883 | { |
|
884 | return new self($I); |
|
885 | } |
|
886 | } |
|
887 | ||
888 | class Boomerang_Local extends Local_Plugin |
|
889 | { |