Factory.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WCML\Compatibility\AdventureTours; |
| 4 | |
| 5 | use WCML\Compatibility\ComponentFactory; |
| 6 | use WCML_Adventure_Tours; |
| 7 | use function WCML\functions\getSitePress; |
| 8 | use function WCML\functions\getWooCommerceWpml; |
| 9 | |
| 10 | class Factory extends ComponentFactory { |
| 11 | |
| 12 | public function create() { |
| 13 | return new WCML_Adventure_Tours( getWooCommerceWpml(), getSitePress(), self::getElementTranslationPackage() ); |
| 14 | } |
| 15 | } |
| 16 |