AJAX
10 months ago
Admin_Page
11 months ago
Click_Tracking
1 year ago
Custom_WordPress_Columns
1 year ago
Data_Pruning
1 year ago
Date_Picker
1 year ago
Date_Range
11 months ago
Ecommerce
1 year ago
Email_Reports
11 months ago
Examiner
11 months ago
Filter_Lists
1 year ago
Form_Submissions
11 months ago
Integrations
1 year ago
Interval
1 year ago
Menu_Bar_Stats
1 year ago
Migrations
1 year ago
Models
10 months ago
Overview
11 months ago
Public_API
1 year ago
Rows
10 months ago
Statistics
11 months ago
Tables
11 months ago
Utils
11 months ago
Appearance.php
1 year ago
Campaign_Builder.php
1 year ago
Capability_Manager.php
1 year ago
Chart.php
1 year ago
Chart_Data.php
1 year ago
Click_Tracking.php
1 year ago
Cron_Job.php
1 year ago
Cron_Manager.php
1 year ago
Current_Traffic_Finder.php
1 year ago
Dashboard_Options.php
11 months ago
Dashboard_Widget.php
2 years ago
Database.php
1 year ago
Database_Manager.php
11 months ago
Empty_Report_Option.php
2 years ago
Env.php
1 year ago
Examiner_Config.php
11 months ago
Filters.php
1 year ago
Geo_Database_Background_Job.php
1 year ago
Geo_Database_Manager.php
11 months ago
Geoposition.php
1 year ago
Icon_Directory.php
2 years ago
Icon_Directory_Factory.php
2 years ago
Illuminate_Builder.php
10 months ago
Independent_Analytics.php
11 months ago
Interrupt.php
1 year ago
Known_Referrers.php
11 months ago
MainWP.php
1 year ago
Map.php
1 year ago
Map_Data.php
1 year ago
Migration_Fixer_Job.php
1 year ago
Patch.php
1 year ago
Payload_Validator.php
1 year ago
Plugin_Conflict_Detector.php
11 months ago
Plugin_Group.php
1 year ago
Plugin_Group_Option.php
2 years ago
Query.php
1 year ago
Query_Taps.php
11 months ago
Quick_Stats.php
11 months ago
REST_API.php
11 months ago
Real_Time.php
1 year ago
Report.php
1 year ago
Report_Finder.php
1 year ago
Report_Options_Parser.php
1 year ago
Resource_Identifier.php
1 year ago
Settings.php
11 months ago
Sort_Configuration.php
1 year ago
Tables.php
1 year ago
Track_Resource_Changes.php
1 year ago
View.php
11 months ago
View_Counter.php
1 year ago
Views_Over_Time_Finder.php
1 year ago
WP_Option_Cache_Bust.php
2 years ago
Env.php
121 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP; |
| 4 | |
| 5 | use IAWP\Tables\Table_Campaigns; |
| 6 | use IAWP\Tables\Table_Clicks; |
| 7 | use IAWP\Tables\Table_Devices; |
| 8 | use IAWP\Tables\Table_Geo; |
| 9 | use IAWP\Tables\Table_Pages; |
| 10 | use IAWP\Tables\Table_Referrers; |
| 11 | /** @internal */ |
| 12 | class Env |
| 13 | { |
| 14 | public function is_free() : bool |
| 15 | { |
| 16 | return \IAWPSCOPED\iawp_is_free(); |
| 17 | } |
| 18 | public function is_pro() : bool |
| 19 | { |
| 20 | return \IAWPSCOPED\iawp_is_pro(); |
| 21 | } |
| 22 | /** |
| 23 | * @param string|int $id An int for a saved report. A string for a default-report. |
| 24 | * |
| 25 | * @return bool |
| 26 | */ |
| 27 | public function is_favorite($id = null) : bool |
| 28 | { |
| 29 | if (\is_int($id)) { |
| 30 | $raw_favorite_id = \get_user_meta(\get_current_user_id(), 'iawp_favorite_report_id', \true); |
| 31 | $favorite_id = \filter_var($raw_favorite_id, \FILTER_VALIDATE_INT); |
| 32 | return $favorite_id === $id; |
| 33 | } elseif (\is_string($id)) { |
| 34 | $raw_favorite_type = \get_user_meta(\get_current_user_id(), 'iawp_favorite_report_type', \true); |
| 35 | $favorite_type = \filter_var($raw_favorite_type, \FILTER_SANITIZE_FULL_SPECIAL_CHARS); |
| 36 | return $favorite_type === $id; |
| 37 | } else { |
| 38 | return \false; |
| 39 | } |
| 40 | } |
| 41 | /** |
| 42 | * @param string|int $id An int for a saved report. A string for a default-report. |
| 43 | * |
| 44 | * @return bool |
| 45 | */ |
| 46 | public function is_currently_viewed($id = null) : bool |
| 47 | { |
| 48 | if (\is_int($id)) { |
| 49 | $report_id = \array_key_exists('report', $_GET) ? \sanitize_text_field($_GET['report']) : null; |
| 50 | return $id === \intval($report_id); |
| 51 | } elseif (\is_string($id)) { |
| 52 | return $id === self::get_tab(); |
| 53 | } else { |
| 54 | return \false; |
| 55 | } |
| 56 | } |
| 57 | public function is_white_labeled() : bool |
| 58 | { |
| 59 | return \IAWP\Capability_Manager::show_white_labeled_ui(); |
| 60 | } |
| 61 | public function can_write() : bool |
| 62 | { |
| 63 | return \IAWP\Capability_Manager::can_edit(); |
| 64 | } |
| 65 | public static function get_page() : ?string |
| 66 | { |
| 67 | if (!\is_admin()) { |
| 68 | return null; |
| 69 | } |
| 70 | $page = $_GET['page'] ?? null; |
| 71 | $valid_pages = ['independent-analytics', 'independent-analytics-settings', 'independent-analytics-campaign-builder', 'independent-analytics-click-tracking', 'independent-analytics-support-center', 'independent-analytics-integrations', 'independent-analytics-updates', 'independent-analytics-debug']; |
| 72 | if (\in_array($page, $valid_pages)) { |
| 73 | return $page; |
| 74 | } |
| 75 | return null; |
| 76 | } |
| 77 | public static function get_tab() : ?string |
| 78 | { |
| 79 | if (self::get_page() !== 'independent-analytics') { |
| 80 | return null; |
| 81 | } |
| 82 | $default_tab = 'views'; |
| 83 | $valid_tabs = ['views', 'referrers', 'geo', 'devices']; |
| 84 | if (\IAWPSCOPED\iawp_is_pro()) { |
| 85 | $default_tab = 'overview'; |
| 86 | $valid_tabs = \array_merge($valid_tabs, ['campaigns', 'clicks', 'real-time', 'overview']); |
| 87 | } |
| 88 | $tab = \array_key_exists('tab', $_GET) ? \stripslashes(\sanitize_text_field($_GET['tab'])) : \false; |
| 89 | $is_valid = \in_array($tab, $valid_tabs); |
| 90 | if ($is_valid) { |
| 91 | return $tab; |
| 92 | } else { |
| 93 | return $default_tab; |
| 94 | } |
| 95 | } |
| 96 | public static function get_table(?string $table_type = null) : string |
| 97 | { |
| 98 | if (null === $table_type && \array_key_exists('tab', $_GET)) { |
| 99 | $table_type = \stripslashes(\sanitize_text_field($_GET['tab'])); |
| 100 | } |
| 101 | if (null === $table_type && \array_key_exists('table_type', $_POST)) { |
| 102 | $table_type = \stripslashes(\sanitize_text_field($_POST['table_type'])); |
| 103 | } |
| 104 | switch ($table_type) { |
| 105 | case 'views': |
| 106 | default: |
| 107 | return Table_Pages::class; |
| 108 | case 'referrers': |
| 109 | return Table_Referrers::class; |
| 110 | case 'geo': |
| 111 | return Table_Geo::class; |
| 112 | case 'devices': |
| 113 | return Table_Devices::class; |
| 114 | case 'campaigns': |
| 115 | return Table_Campaigns::class; |
| 116 | case 'clicks': |
| 117 | return Table_Clicks::class; |
| 118 | } |
| 119 | } |
| 120 | } |
| 121 |