Hooks.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WCML\Reports; |
| 4 | |
| 5 | use WCML\Rest\Functions; |
| 6 | |
| 7 | class Hooks implements \IWPML_Backend_Action { |
| 8 | |
| 9 | public function add_hooks() { |
| 10 | if ( Functions::isAnalyticsPage() ) { |
| 11 | add_filter( 'wpml_admin_language_switcher_items', [ $this, 'removeAllFromAnalytics' ] ); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | public function removeAllFromAnalytics( $items ) { |
| 16 | unset( $items['all'] ); |
| 17 | |
| 18 | return $items; |
| 19 | } |
| 20 | |
| 21 | } |
| 22 |