Add event staff settings

This commit is contained in:
Brian Miyaji
2014-06-18 13:25:52 +10:00
parent 89a92d3246
commit 00c546343f
2 changed files with 60 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ class SP_Admin_Settings {
$settings[] = include( 'settings/class-sp-settings-events.php' );
$settings[] = include( 'settings/class-sp-settings-teams.php' );
$settings[] = include( 'settings/class-sp-settings-players.php' );
$settings[] = include( 'settings/class-sp-settings-staff.php' );
$settings = apply_filters( 'sportspress_get_settings_pages', $settings );

View File

@@ -0,0 +1,59 @@
<?php
/**
* SportsPress Staff Settings
*
* @author ThemeBoy
* @category Admin
* @package SportsPress/Admin
* @version 1.1
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if ( ! class_exists( 'SP_Settings_Staff' ) ) :
/**
* SP_Settings_Staff
*/
class SP_Settings_Staff extends SP_Settings_Page {
/**
* Constructor
*/
public function __construct() {
$this->id = 'staff';
$this->label = __( 'Staff', 'sportspress' );
add_filter( 'sportspress_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
add_action( 'sportspress_settings_' . $this->id, array( $this, 'output' ) );
add_action( 'sportspress_settings_save_' . $this->id, array( $this, 'save' ) );
}
/**
* Get settings array
*
* @return array
*/
public function get_settings() {
return apply_filters( 'sportspress_staff_settings', array(
array( 'title' => __( 'Staff Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'staff_options' ),
array(
'title' => __( 'Nationality', 'sportspress' ),
'desc' => __( 'Display national flags', 'sportspress' ),
'id' => 'sportspress_staff_show_flags',
'default' => 'yes',
'type' => 'checkbox',
),
array( 'type' => 'sectionend', 'id' => 'staff_options' ),
)); // End staff settings
}
}
endif;
return new SP_Settings_Staff();