| Server IP : 104.26.5.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/buzzbitesv3/public_html/wp-content/themes/bite/plugins/metform/ |
Upload File : |
<?php
/* MetForm support functions
------------------------------------------------------------------------------- */
// Theme init priorities:
// 9 - register other filters (for installer, etc.)
if ( ! function_exists( 'bite_metform_theme_setup9' ) ) {
add_action( 'after_setup_theme', 'bite_metform_theme_setup9', 9 );
function bite_metform_theme_setup9() {
if ( is_admin() ) {
add_filter( 'bite_filter_tgmpa_required_plugins', 'bite_metform_tgmpa_required_plugins' );
add_filter( 'bite_filter_theme_plugins', 'bite_metform_theme_plugins' );
}
}
}
// Filter to add in the required plugins list
if ( ! function_exists( 'bite_metform_tgmpa_required_plugins' ) ) {
//Handler of the add_filter('bite_filter_tgmpa_required_plugins', 'bite_metform_tgmpa_required_plugins');
function bite_metform_tgmpa_required_plugins( $list = array() ) {
if ( bite_storage_isset( 'required_plugins', 'metform' ) && bite_storage_get_array( 'required_plugins', 'metform', 'install' ) !== false ) {
$list[] = array(
'name' => bite_storage_get_array( 'required_plugins', 'metform', 'title' ),
'slug' => 'metform',
'required' => false,
);
}
return $list;
}
}
// Filter theme-supported plugins list
if ( ! function_exists( 'bite_metform_theme_plugins' ) ) {
//Handler of the add_filter( 'bite_filter_theme_plugins', 'bite_metform_theme_plugins' );
function bite_metform_theme_plugins( $list = array() ) {
return bite_add_group_and_logo_to_slave( $list, 'metform', 'metform-' );
}
}
// Check if a plugin is installed and activated
if ( ! function_exists( 'bite_exists_metform' ) ) {
function bite_exists_metform() {
return class_exists( 'MetForm\Plugin' );
}
}