models
4 years ago
queries
4 years ago
utils
4 years ago
chart.php
4 years ago
db.php
4 years ago
delete_data_ajax.php
4 years ago
filters.php
4 years ago
filters_ajax.php
4 years ago
rest_api.php
4 years ago
settings.php
4 years ago
settings_ajax.php
4 years ago
super_secret_content_generator.php
4 years ago
table.php
4 years ago
table_referrers.php
4 years ago
table_views.php
4 years ago
track_resource_changes.php
4 years ago
settings.php
74 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP; |
| 4 | |
| 5 | class Settings |
| 6 | { |
| 7 | public function __construct() |
| 8 | { |
| 9 | add_action('admin_init', [$this, 'register_settings']); |
| 10 | } |
| 11 | |
| 12 | public function render_settings() |
| 13 | { |
| 14 | echo IAWP()->templates()->render('settings/index', [ |
| 15 | 'site_name' => get_bloginfo('name'), |
| 16 | 'site_url' => site_url(), |
| 17 | ]); |
| 18 | } |
| 19 | |
| 20 | public function register_settings() |
| 21 | { |
| 22 | add_settings_section('iawp-settings-section', esc_html__('Settings', 'iawp'), '', 'independent-analytics-settings'); |
| 23 | |
| 24 | $args = [ |
| 25 | 'type' => 'boolean', |
| 26 | 'default' => false, |
| 27 | 'sanitize_callback' => 'rest_sanitize_boolean', |
| 28 | ]; |
| 29 | register_setting('iawp_settings', 'iawp_dark_mode', $args); |
| 30 | add_settings_field('iawp_dark_mode', esc_html__('Dark mode', 'iawp'), [$this, 'dark_mode_callback'], 'independent-analytics-settings', 'iawp-settings-section', ['class' => 'dark-mode']); |
| 31 | |
| 32 | register_setting('iawp_settings', 'iawp_track_authenticated_users', $args); |
| 33 | add_settings_field('iawp_track_authenticated_users', esc_html__('Track logged in users', 'iawp'), [$this, 'track_authenticated_users_callback'], 'independent-analytics-settings', 'iawp-settings-section', ['class' => 'logged-in']); |
| 34 | |
| 35 | $args = [ |
| 36 | 'type' => 'integer', |
| 37 | 'default' => 1, |
| 38 | 'sanitize_callback' => 'absint', |
| 39 | ]; |
| 40 | register_setting('iawp_settings', 'iawp_dow', $args); |
| 41 | add_settings_field('iawp_dow', esc_html__('First day of week', 'iawp'), [$this, 'starting_dow_callback'], 'independent-analytics-settings', 'iawp-settings-section', ['class' => 'dow']); |
| 42 | } |
| 43 | |
| 44 | public function dark_mode_callback() |
| 45 | { |
| 46 | echo IAWP()->templates()->render('settings/dark_mode', [ |
| 47 | 'dark_mode' => IAWP()->get_option('iawp_dark_mode', false), |
| 48 | ]); |
| 49 | } |
| 50 | |
| 51 | public function track_authenticated_users_callback() |
| 52 | { |
| 53 | echo IAWP()->templates()->render('settings/track_authenticated_users', [ |
| 54 | 'track_authenticated_users' => IAWP()->get_option('iawp_track_authenticated_users', false), |
| 55 | ]); |
| 56 | } |
| 57 | |
| 58 | public function starting_dow_callback() |
| 59 | { |
| 60 | echo IAWP()->templates()->render('settings/first_day_of_week', [ |
| 61 | 'day_of_week' => IAWP()->get_option('iawp_dow', 0), |
| 62 | 'days' => [ |
| 63 | 0 => esc_html__('Sunday', 'iawp'), |
| 64 | 1 => esc_html__('Monday', 'iawp'), |
| 65 | 2 => esc_html__('Tuesday', 'iawp'), |
| 66 | 3 => esc_html__('Wednesday', 'iawp'), |
| 67 | 4 => esc_html__('Thursday', 'iawp'), |
| 68 | 5 => esc_html__('Friday', 'iawp'), |
| 69 | 6 => esc_html__('Saturday', 'iawp'), |
| 70 | ], |
| 71 | ]); |
| 72 | } |
| 73 | } |
| 74 |