| 1 | <?php |
||
| 6 | class Carbon_Breadcrumb_L10n { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * Constructor. |
||
| 10 | * |
||
| 11 | * Initializes and hooks the plugin localization functionality. |
||
| 12 | * |
||
| 13 | * @access public |
||
| 14 | */ |
||
| 15 | 1 | public function __construct() { |
|
| 16 | // register our plugins_loaded method |
||
| 17 | 1 | add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ) ); |
|
| 18 | 1 | } |
|
| 19 | |||
| 20 | /** |
||
| 21 | * Load the plugin textdomain. |
||
| 22 | * |
||
| 23 | * @access public |
||
| 24 | */ |
||
| 25 | public function plugins_loaded() { |
||
| 30 | |||
| 31 | } |