PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.3
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.3
5.5.84 5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 5.5.42 All 160 releases
wp-data-access / includes / class-wp-data-access-i18n.php

class-wp-data-access-i18n.php in WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards 5.5.3, at includes/class-wp-data-access-i18n.php

32 lines 536 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Suppress "error - 0 - No summary was found for this file" on phpdoc generation
4 *
5 * @package plugin\includes
6 */
7
8 /**
9 * Class WP_Data_Access_I18n
10 *
11 * Loads internationalization files
12 *
13 * @author Peter Schulz
14 * @since 1.0.0
15 */
16 class WP_Data_Access_I18n {
17
18 /**
19 * Load plugin internationalization files
20 *
21 * @since 1.0.0
22 */
23 public function load_plugin_textdomain() {
24 load_plugin_textdomain(
25 'wp-data-access',
26 false,
27 dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
28 );
29 }
30
31 }
32