| @@ -9,11 +9,24 @@ | ||
| 9 | 9 | } |
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | private function options(): array { |
| 13 | - return [ | |
| 13 | + $options = array( | |
| 14 | 14 | 'optin_monster_api_activation_redirect_disabled' => 'true', |
| 15 | - 'wpforms_activation_redirect' => 'true', | |
| 16 | - 'aioseo_activation_redirect' => 'false', | |
| 17 | - ]; | |
| 15 | + 'wpforms_activation_redirect' => 'true', | |
| 16 | + 'aioseo_activation_redirect' => 'false', | |
| 17 | + ); | |
| 18 | + | |
| 19 | + if ( Hostinger_Helper::is_plugin_active( 'astra-sites' ) ) { | |
| 20 | + $options = array_merge( $options, $this->get_astra_options() ); | |
| 21 | + } | |
| 22 | + | |
| 23 | + return $options; | |
| 24 | + } | |
| 25 | + | |
| 26 | + private function get_astra_options(): array { | |
| 27 | + return array( | |
| 28 | + 'astra_sites_settings' => 'gutenberg', | |
| 29 | + 'st-elementor-builder-flag' => '1', | |
| 30 | + ); | |
| 18 | 31 | } |
| 19 | 32 | } |