Files
doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/classes/wp/screens/class-wpml-wp-options-general-hooks-factory.php
2023-09-12 21:41:04 +02:00

13 lines
262 B
PHP

<?php
class WPML_WP_Options_General_Hooks_Factory extends WPML_Current_Screen_Loader_Factory {
protected function get_screen_regex() {
return '/^options-general$/';
}
protected function create_hooks() {
return new WPML_WP_Options_General_Hooks();
}
}