' . esc_html( $msg ) . '

If you need access to this page please contact the dashboard administrator.'; } else { return $msg; } return false; } } if ( ! function_exists( 'mainwp_current_user_can' ) ) { /** * Check permission level. * * To compatible with extensions. * * @param string $cap_type Group or type of capabilities. * @param string $cap Capabilities for current user. * * @return bool true|false */ function mainwp_current_user_can( $cap_type = '', $cap = '' ) { if ( function_exists( 'MainWP\Dashboard\mainwp_current_user_have_right' ) ) { return MainWP\Dashboard\mainwp_current_user_have_right( $cap_type, $cap ); } return true; } } if ( ! function_exists( 'mainwp_get_actions_handler_instance' ) ) { /** * Function to get mainwp actions handler instance. * * @return bool true|false */ function mainwp_get_actions_handler_instance() { return \MainWP\Dashboard\MainWP_Actions_Handler::instance(); } } if ( ! function_exists( 'mainwp_send_json_output' ) ) { /** * Handle send json output. * * @param array $output Array output. */ function mainwp_send_json_output( $output ) { if ( is_array( $output ) ) { $output['execute_time'] = \MainWP\Dashboard\MainWP_Execution_Helper::instance()->get_exec_time(); } wp_send_json( $output ); } } if ( ! function_exists( 'mainwp_modules_is_enabled' ) ) { /** * Check if module is enable. * * @param string $module module slug. * * @return bool true|false */ function mainwp_modules_is_enabled( $module ) { $enable_mainwp_modules = array( 'logs' => defined( 'MAINWP_MODULE_LOG_ENABLED' ) && MAINWP_MODULE_LOG_ENABLED ? true : false, 'cost-tracker' => defined( 'MAINWP_MODULE_COST_TRACKER_ENABLED' ) && MAINWP_MODULE_COST_TRACKER_ENABLED ? true : false, 'api-backups' => defined( 'MAINWP_MODULE_API_BACKUPS_ENABLED' ) && MAINWP_MODULE_API_BACKUPS_ENABLED ? true : false, ); return ! empty( $enable_mainwp_modules[ $module ] ) ? true : false; } } if ( ! function_exists( 'mainwp_get_timestamp' ) ) { /** * Function mainwp_get_timestamp. * * @param int $add_time add time. * @return int */ function mainwp_get_timestamp( $add_time = 0 ) { return (int) $add_time + (int) \MainWP\Dashboard\MainWP_Utility::get_timestamp(); } } if ( ! function_exists( 'mainwp_get_current_utc_datetime_db' ) ) { /** * Function mainwp_get_current_utc_datetime_db. * * @param bool $get_db_datetime To get db datetime. * * @return int */ function mainwp_get_current_utc_datetime_db( $get_db_datetime = true ) { $utcTime = new \DateTime( 'now', new \DateTimeZone( 'UTC' ) ); return $get_db_datetime ? $utcTime->format( 'Y-m-d H:i:s' ) : $utcTime->getTimestamp(); // Outputs: YYYY-MM-DD HH:MM:SS. } } if ( ! function_exists( 'mainwp_secure_request' ) ) { /** * Function mainwp_secure_request. * * @param string $action request action. * @return void */ function mainwp_secure_request( $action ) { \MainWP\Dashboard\MainWP_Post_Handler::instance()->secure_request( $action ); } }