define_constants(); add_filter( 'sportspress_text', array( $this, 'add_text_options' ) ); } /** * Define constants. */ private function define_constants() { if ( !defined( 'SP_PLAYER_OF_THE_MATCH_VERSION' ) ) define( 'SP_PLAYER_OF_THE_MATCH_VERSION', '2.5' ); if ( !defined( 'SP_PLAYER_OF_THE_MATCH_URL' ) ) define( 'SP_PLAYER_OF_THE_MATCH_URL', plugin_dir_url( __FILE__ ) ); if ( !defined( 'SP_PLAYER_OF_THE_MATCH_DIR' ) ) define( 'SP_PLAYER_OF_THE_MATCH_DIR', plugin_dir_path( __FILE__ ) ); } /** * Add text options */ public function add_text_options( $options = array() ) { return array_merge( $options, array( __( 'Player of the Match', 'sportspress' ), ) ); } } endif; new SportsPress_Player_Of_The_Match();