| @@ -1,7 +1,10 @@ | ||
| 1 | 1 | <?php if (! defined('ABSPATH')) exit; // Exit if accessed directly |
| 2 | -define( 'HC3_VERSION', 103 ); | |
| 2 | +if (!defined('HC3_VERSION')) { | |
| 3 | + define( 'HC3_VERSION', 103 ); | |
| 4 | +} | |
| 3 | 5 | |
| 6 | +if (!class_exists('HC3_Abstract_Plugin')) { | |
| 4 | 7 | abstract class HC3_Abstract_Plugin |
| 5 | 8 | { |
| 6 | 9 | public static $instance; |
| 7 | 10 | |
| @@ -719,8 +722,9 @@ | ||
| 719 | 722 | public function root() |
| 720 | 723 | { |
| 721 | 724 | return $this->dic; |
| 722 | 725 | } |
| 726 | +} | |
| 723 | 727 | } |
| 724 | 728 | |
| 725 | 729 | if( ! function_exists('_print_r') ){ |
| 726 | 730 | function _print_r( $thing ) |