# mainwp/5.4/includes/functions.php

MainWP Dashboard: Self-hosted WordPress Management for Agencies, version 5.4. 155 lines.

- Page: https://pluginprobe.com/plugins/mainwp/5.4/code/includes/functions.php
- Raw: https://pluginprobe.com/plugins/mainwp/5.4/raw/includes/functions.php
- Modified: 2025-02-06T16:30:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mainwp/5.4/code/includes/functions.php#L10-L20`.

```php
<?php
/**
 * MainWP Base Functions.
 *
 * Grab MainWP Directory and check for permissions.
 *
 * @package     MainWP/Dashboard
 */

if ( ! defined( 'FILTER_SANITIZE_STRING_COMPATIBLE' ) ) {  // to compatible.
    define( 'FILTER_SANITIZE_STRING_COMPATIBLE', 513 );
}

if ( ! function_exists( 'mainwpdir' ) ) {

    /**
     * Grab MainWP Directory
     *
     * @return string
     */
    function mainwpdir() {
        return WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . dirname( plugin_basename( __FILE__ ) ) . DIRECTORY_SEPARATOR . 'libs' . DIRECTORY_SEPARATOR;
    }
}


if ( ! function_exists( '\mainwp_do_not_have_permissions' ) ) {

    /**
     * Detect permission level & display message to end user.
     *
     * @param string $where User's location.
     * @param bool   $echo_out Defines weather or not to echo error message.
     * @return string|bool $msg|false
     */
    function mainwp_do_not_have_permissions( $where = '', $echo_out = true ) {
        $msg = sprintf( esc_html__( 'You do not have sufficient permissions to access this page (%s).', 'mainwp' ), ucwords( $where ) );
        if ( $echo_out ) {
            echo '<div class="mainwp-permission-error"><p>' . esc_html( $msg ) . '</p>If you need access to this page please contact the dashboard administrator.</div>';
        } 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 );
    }
}

```
