57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Class WPML_TM_TF_Module
|
|
*
|
|
* @author OnTheGoSystems
|
|
*/
|
|
class WPML_TM_TF_Module {
|
|
|
|
/** @var WPML_Action_Filter_Loader $action_filter_loader */
|
|
private $action_filter_loader;
|
|
|
|
/** @var WPML_TF_Settings $settings */
|
|
private $settings;
|
|
|
|
/**
|
|
* WPML_TF_Module constructor.
|
|
*
|
|
* @param WPML_Action_Filter_Loader $action_filter_loader
|
|
* @param WPML_TF_Settings $settings
|
|
*/
|
|
public function __construct( WPML_Action_Filter_Loader $action_filter_loader, WPML_TF_Settings $settings ) {
|
|
$this->action_filter_loader = $action_filter_loader;
|
|
$this->settings = $settings;
|
|
}
|
|
|
|
public function run() {
|
|
$this->action_filter_loader->load( $this->get_actions_to_load_always() );
|
|
|
|
if ( $this->settings->is_enabled() ) {
|
|
$this->action_filter_loader->load( $this->get_actions_to_load_when_module_enabled() );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
private function get_actions_to_load_always() {
|
|
return array(
|
|
'WPML_TF_WP_Cron_Events_Factory',
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
private function get_actions_to_load_when_module_enabled() {
|
|
return array(
|
|
'WPML_TF_XML_RPC_Hooks_Factory',
|
|
'WPML_TF_Translation_Service_Change_Hooks_Factory',
|
|
'WPML_TF_Translation_Queue_Hooks_Factory',
|
|
'WPML_TM_TF_Feedback_List_Hooks_Factory',
|
|
'WPML_TM_TF_AJAX_Feedback_List_Hooks_Factory',
|
|
);
|
|
}
|
|
}
|