/var/www/html_sp/wp-content/plugins/loco-translate/src/hooks/AdminHooks.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
/**
 * Common hooks for all admin contexts
 */
class Loco_hooks_AdminHooks extends Loco_hooks_Hookable {

    
/**
     * @var Loco_mvc_AdminRouter
     */
    
private $router;


    
/**
     * "admin_notices" callback, 
     * If this is hooked and not unhooked then auto-hooks using annotations have failed.
     */
    
public static function print_hook_failure(){
        echo 
'<div class="notice error"><p><strong>Error:</strong> Loco Translate failed to start up</p></div>';
    }


    
/**
     * Autoloader for polyfills and warnings when important classes are requested, but missing.
     * This must be loaded after `loco_autoload` which is responsible for loading Loco_* classes.
     */
    
public static function autoload_compat$name ){
        if( 
strlen($name) < 20 && 'Loco_' !== substr($name,0,5) ){
            
$path loco_plugin_root().'/src/compat/'.$name.'.php';
            if( 
file_exists($path) ){
                require 
$path;
            }
        }
    }


    
/**
     * {@inheritdoc}
     */
    
public function __construct(){
        
// renders failure notice if plugin failed to start up admin hooks.
        
add_action'admin_notices', [__CLASS__,'print_hook_failure'] );
        
// initialize hooks
        
parent::__construct();
        
// Ajax router will be called directly in tests
        // @codeCoverageIgnoreStart
        
if( loco_doing_ajax() ){
            
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
            
// initialize Ajax router before hook fired so we can handle output buffering
            
if( 'loco_' === substr($action,0,5)  && isset($_REQUEST['route']) ){
                
spl_autoload_register( [__CLASS__,'autoload_compat'] );
                
$this->router = new Loco_mvc_AjaxRouter;
                
Loco_package_Listener::create();
            }
        }
        
// @codeCoverageIgnoreEnd
        // page router required on all pages as it hooks in the menu
        
else {
            
$this->router = new Loco_mvc_AdminRouter;
            
// we don't know we will render a page yet, but we know it'll be ours if it exists.
            
if( isset($_GET['page']) && 'loco' === substr($_GET['page'],0,4) ){
                
spl_autoload_register( [__CLASS__,'autoload_compat'] );
                
Loco_package_Listener::create();
                
// trigger post-upgrade process if required
                
Loco_data_Settings::get()->migrate();
            }
        }
    }


    
/**
     * @inheritdoc
     */
    
public function unhook(){
        
spl_autoload_unregister( [__CLASS__,'autoload_compat'] );
        
parent::unhook();
    }    


    
/**
     * "admin_init" callback.
     */
    
public function on_admin_init(){
        
// This should fire just before WP_Privacy_Policy_Content::privacy_policy_guide is called
        // View this content at /wp-admin/privacy-policy-guide.php#wp-privacy-policy-guide-loco-translate
        
if( function_exists('wp_add_privacy_policy_content') ) {
            
$url apply_filters('loco_external','https://localise.biz/wordpress/plugin/privacy');
            
wp_add_privacy_policy_content(
                
__('Loco Translate','loco-translate'),
                
esc_html__("This plugin doesn't collect any data from public website visitors.",'loco-translate') ).'<br />'
                
wp_kses(
                    
// translators: %s will be replaced with a URL which may change without affecting the translation.
                    
sprintf__('Administrators and auditors may wish to review Loco\'s <a href="%s">plugin privacy notice</a>.','loco-translate'), esc_url($url) ),
                    [
'a'=>['href'=>true]], ['https']
                )
            );
        }
    }


    
/**
     * "admin_menu" callback.
     */
    
public function on_admin_menu(){
        
// This earliest we need translations, and admin user locale should be set by now
        
if( $this->router ){
            
$domainPath dirnameloco_plugin_self() ).'/languages';
            
load_plugin_textdomain'loco-translate'false$domainPath );
        }
        
// Unhook failure notice that would fire if this hook was not successful
        
remove_action'admin_notices', [__CLASS__,'print_hook_failure'] );
    }


    
/**
     * plugin_action_links action callback
     * @param string[] $links
     * @param string $plugin
     * @return string[]
     */
    
public function on_plugin_action_links$links$plugin '' ){
         try {
             if( 
$plugin && current_user_can('loco_admin') && Loco_package_Plugin::get_plugin($plugin) ){
                
// coerce links to array
                
if( ! is_array($links) ){
                    
$links $links && is_string($links) ? (array) $links : [];
                }
                
// ok to add "translate" link into meta row
                
$href Loco_mvc_AdminRouter::generate('plugin-view', [ 'bundle' => $plugin] );
                
$links[] = '<a href="'.esc_attr($href).'">'.esc_html__('Translate','loco-translate').'</a>';
             }
         }
         catch( 
Exception $e ){
             
// $links[] = esc_html( 'Debug: '.$e->getMessage() );
         
}
         return 
$links;
    }


    
/**
     * Purge in-memory caches that may be persisted by object caching plugins
     */
    
private function purge_wp_cache(){
        global 
$wp_object_cache;
        if( 
function_exists('wp_cache_delete') && is_object($wp_object_cache) && method_exists($wp_object_cache,'delete') ){
            
wp_cache_delete('plugins','loco');
        }
    }


    
/**
     * pre_update_option_{$option} filter callback for $option = "active_plugins"
     * @param array|null $value Active plugins
     * @return array
     */
    
public function filter_pre_update_option_active_plugins$value null ){
        
$this->purge_wp_cache();
        return 
$value;
    }


    
/**
     * pre_update_site_option_{$option} filter callback for $option = "active_sitewide_plugins"
     * @param array|null $value Active sitewide plugins
     * @return array
     */
    
public function filter_pre_update_site_option_active_sitewide_plugins$value null ){
        
$this->purge_wp_cache();
        return 
$value;
    }



    
/**
     * deactivate_plugin action callback
     *
    public function on_deactivate_plugin( $plugin, $network = false ){
        if( loco_plugin_self() === $plugin ){
            // TODO flush all our transient cache entries
            // "DELETE FROM ___ WHERE `option_name` LIKE '_transient_loco_%' OR `option_name` LIKE '_transient_timeout_loco_%'";
        }
    }*/



    /*public function filter_all( $hook ){
        error_log( $hook, 0 );
    }*/
    
}