This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Class AdsTypeCollection | |
| */ | |
| class AdsTypeCollection implements Iterator{ | |
| const PANORAMA_980x120 = 'PANORAMA_980x120'; | |
| const TOP_BANNER = 'TOP_BANNER_930x180'; | |
| const NETBOARD = 'NETBOARD_580x400'; | |
| const VERTICAL_RECTANGLE = 'VERTICAL_RECTANGLE_240x400'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Class Basket | |
| */ | |
| class Basket | |
| { | |
| protected $productsQuantityCollection; | |
| protected $productsCollection; | |
| protected $tax = 1.2; |
NewerOlder