PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
TemplatemelaMetaBox
/
inc
<?php // Prevent loading this file directly defined( 'ABSPATH' ) || exit; if ( !class_exists( 'RWMB_Common' ) ) { /** * Common functions for the plugin * Independent from meta box/field classes */ class RWMB_Common { /** * Do actions when class is loaded * * @return void */ static function on_load() { self::load_textdomain(); } /** * Load plugin translation * * @return void */ static function load_textdomain() { // l18n translation files $locale = get_locale(); $dir = trailingslashit( RWMB_DIR . 'lang' ); $mofile = "{$dir}{$locale}.mo"; // In themes/plugins/mu-plugins directory load_textdomain( 'cartzilla', $mofile ); } } RWMB_Common::on_load(); }
[-] metaboxes-post.php
[edit]
[+]
..
[-] field.php
[edit]
[-] common.php
[edit]
[-] init.php
[edit]
[-] helpers.php
[edit]
[-] metaboxes-common.php
[edit]
[-] meta-box.php
[edit]
[-] metaboxes-page.php
[edit]
[+]
fields