| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Class Optml_Jetpack_Photon |
| 5 |
* |
| 6 |
* An example of a conflict. |
| 7 |
*/ |
| 8 |
class Optml_Jetpack_Photon extends Optml_Abstract_Conflict { |
| 9 |
|
| 10 |
/** |
| 11 |
* Optml_Jetpack_Photon constructor. |
| 12 |
*/ |
| 13 |
public function __construct() { |
| 14 |
$this->priority = 2; |
| 15 |
$this->severity = self::SEVERITY_HIGH; |
| 16 |
parent::__construct(); |
| 17 |
} |
| 18 |
|
| 19 |
/** |
| 20 |
* Set the message property |
| 21 |
* |
| 22 |
* @since 2.0.6 |
| 23 |
* @access public |
| 24 |
*/ |
| 25 |
public function define_message() { |
| 26 |
$this->message = sprintf( __( 'It seems your are using %1$sJetpack%2$s with site accelerator option enabled for images. %3$s To avoid any possible conflicts with Optimole replacement mechanism, you can go to %4$sJetpack -> Perfomance%5$s and turn off the site accelerator option for %6$simages%7$s ', 'optimole-wp' ), '<b>', '</b>', '<br/>', '<a target="_blank" href="' . admin_url( 'admin.php?page=jetpack#/performance' ) . '">', '</a>', '<b>', '</b>' ); |
| 27 |
} |
| 28 |
|
| 29 |
/** |
| 30 |
* Determine if conflict is applicable. |
| 31 |
* |
| 32 |
* @return bool |
| 33 |
* @since 2.0.6 |
| 34 |
* @access public |
| 35 |
*/ |
| 36 |
public function is_conflict_valid() { |
| 37 |
|
| 38 |
if ( ! is_plugin_active( 'jetpack/jetpack.php' ) ) { |
| 39 |
return false; |
| 40 |
} |
| 41 |
if ( ! class_exists( 'Jetpack', false ) ) { |
| 42 |
return false; |
| 43 |
} |
| 44 |
|
| 45 |
return Jetpack::is_module_active( 'photon' ); |
| 46 |
} |
| 47 |
} |
| 48 |
|