| @@ 785-800 (lines=16) @@ | ||
| 782 | } |
|
| 783 | } |
|
| 784 | ||
| 785 | class Horizon_Local extends Local_Plugin |
|
| 786 | { |
|
| 787 | public function __construct(AcceptanceTester $I) |
|
| 788 | { |
|
| 789 | parent::__construct($I, 'Horizon'); |
|
| 790 | $this->tables[] = 'dtb_dash'; |
|
| 791 | $this->columns[] = 'dtb_cart.is_horizon'; |
|
| 792 | $this->columns[] = 'dtb_cart.dash_id'; |
|
| 793 | $this->traits['\Plugin\Horizon\Entity\CartTrait'] = 'Cart'; |
|
| 794 | } |
|
| 795 | ||
| 796 | public static function start(AcceptanceTester $I) |
|
| 797 | { |
|
| 798 | return new self($I); |
|
| 799 | } |
|
| 800 | } |
|
| 801 | ||
| 802 | class Horizon_Store extends Store_Plugin |
|
| 803 | { |
|
| @@ 884-899 (lines=16) @@ | ||
| 881 | } |
|
| 882 | } |
|
| 883 | ||
| 884 | class Boomerang_Store extends Store_Plugin |
|
| 885 | { |
|
| 886 | public function __construct(AcceptanceTester $I) |
|
| 887 | { |
|
| 888 | parent::__construct($I, 'Boomerang'); |
|
| 889 | $this->tables[] = 'dtb_bar'; |
|
| 890 | $this->columns[] = 'dtb_cart.is_boomerang'; |
|
| 891 | $this->columns[] = 'dtb_cart.bar_id'; |
|
| 892 | $this->traits['\Plugin\Boomerang\Entity\CartTrait'] = 'Cart'; |
|
| 893 | } |
|
| 894 | ||
| 895 | public static function start(AcceptanceTester $I) |
|
| 896 | { |
|
| 897 | return new self($I); |
|
| 898 | } |
|
| 899 | } |
|
| 900 | ||
| 901 | class Boomerang_Local extends Local_Plugin |
|
| 902 | { |
|