File: /var/www/newfaith.focalat.com/new-faith/wp-content/themes/christian/kits/settings/main/section.php
<?php
namespace ChristianSpace\Kits\Settings\Main;
use ChristianSpace\Kits\Settings\Base\Base_Section;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Main section.
*/
class Section extends Base_Section {
/**
* Get name.
*
* Retrieve the section name.
*/
public static function get_name() {
return 'main';
}
/**
* Get title.
*
* Retrieve the section title.
*/
public static function get_title() {
return esc_html__( 'Main', 'christian' );
}
/**
* Get icon.
*
* Retrieve the section icon.
*/
public static function get_icon() {
return 'eicon-layout-settings';
}
/**
* Get toggles.
*
* Retrieve the section toggles.
*/
public static function get_toggles() {
return array(
'main',
);
}
}