PATH:
home
/
letacommog
/
adelcya
/
wp-content
/
plugins
/
white-label-cms
/
includes
/
classes
<?php /** * Define the internationalization functionality * * Loads and defines the internationalization files for this plugin * so that it is ready for translation. */ class WLCMS_I18n { function __construct() { add_action('init', array($this, 'load_textdomain')); } public function load_textdomain() { $domain = 'white-label-cms'; $plugin_rel_path = $domain . '/languages/'; load_plugin_textdomain( $domain, false, $plugin_rel_path ); } } new WLCMS_I18n();
[+]
..
[-] Branding.php
[edit]
[-] I18n.php
[edit]
[-] Admin_Script.php
[edit]
[-] Admin_Core.php
[edit]
[-] Admin_Settings.php
[edit]
[-] Settings.php
[edit]
[-] Login.php
[edit]
[-] index.php
[edit]
[-] Messages.php
[edit]
[-] Previewable.php
[edit]
[-] Wizard.php
[edit]
[-] Admin_Dashboard.php
[edit]
[-] Loader.php
[edit]
[-] Upgrade.php
[edit]
[-] Admin_Menus.php
[edit]