woocommerce-multilingual
/
vendor
/
otgs
/
installer
/
includes
/
instances
/
class-otgs-installer-instance.php
class-otgs-installer-instance.php
4 weeks ago
class-otgs-installer-instances-factory.php
5 years ago
class-otgs-installer-instances.php
4 weeks ago
class-otgs-installer-instance.php
32 lines
| 1 | <?php |
| 2 | |
| 3 | class OTGS_Installer_Instance { |
| 4 | |
| 5 | public $bootfile; |
| 6 | |
| 7 | public $version; |
| 8 | |
| 9 | public $high_priority; |
| 10 | |
| 11 | public $delegated; |
| 12 | |
| 13 | public function set_bootfile( $bootfile ) { |
| 14 | $this->bootfile = $bootfile; |
| 15 | return $this; |
| 16 | } |
| 17 | |
| 18 | public function set_high_priority( $high_priority ) { |
| 19 | $this->high_priority = $high_priority; |
| 20 | return $this; |
| 21 | } |
| 22 | |
| 23 | public function set_version( $version ) { |
| 24 | $this->version = $version; |
| 25 | return $this; |
| 26 | } |
| 27 | |
| 28 | public function set_delegated( $delegated ) { |
| 29 | $this->delegated = (bool) $delegated; |
| 30 | return $this; |
| 31 | } |
| 32 | } |