# disco/1.4.14/engine/Context.php

Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO, version 1.4.14. 100 lines.

- Page: https://pluginprobe.com/plugins/disco/1.4.14/code/engine/Context.php
- Raw: https://pluginprobe.com/plugins/disco/1.4.14/raw/engine/Context.php
- Modified: 2025-02-28T10:56:20+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/disco/1.4.14/code/engine/Context.php#L10-L20`.

```php
<?php

/**
 * Disco
 *
 * @package   Disco
 * @author    Ohidul Islam <wahid0003@gmail.com>
 * @copyright 2022 WebAppick
 * @license   GPL 2.0+
 * @link      http://domain.tld
 */

namespace Disco\Engine;

use Inpsyde\WpContext;

/**
 * Disco Is Methods
 */
class Context {

    /**
	 * WpContext Class
	 *
	 * @var object
	 */
	public $context = null;

	/**
	 * What type of request is this?
	 *
	 * @since 1.0.0
	 * @param  string $type admin, ajax, cron, cli, amp or frontend.
	 * @return bool
	 * @SuppressWarnings("StaticAccess")
	 */
	public function request( string $type ) {
		$this->context = WpContext::determine();

		switch ( $type ) {
			case 'backend':
				return $this->context->isBackoffice();

			case 'ajax':
				return $this->context->isAjax();

			case 'installing_wp':
				return $this->context->isInstalling();

			case 'rest':
				return $this->context->isRest();

// case 'cron':
// return $this->context->isCron();

			case 'frontend':
				return $this->context->isFrontoffice();

// case 'cli':
// return $this->context->isWpCli();

			case 'amp':
				return $this->is_amp();

			default:
				\_doing_it_wrong( __METHOD__, \esc_html( \sprintf( 'Unknown request type: %s', $type ) ), '1.0.0' );

				return false;
		}//end switch
	}

	/**
	 * Is AMP
     *
     * @return bool
     */
    public function is_amp() {
        return \function_exists( 'is_amp_endpoint' ) && \is_amp_endpoint();
    }

    /**
     * Whether given user is an administrator.
     *
     * @param \WP_User|null $user The given user.
     * @return bool
     */
	public static function is_user_admin( \WP_User $user = null ) { // phpcs:ignore
        if ( \is_null( $user ) ) {
            $user = \wp_get_current_user();
        }

        if ( ! $user instanceof \WP_User ) {
            \_doing_it_wrong( __METHOD__, 'To check if the user is admin is required a WP_User object.', '1.0.0' );
        }

		return \is_multisite() ? \user_can( $user, 'manage_network' ) : \user_can( $user, 'manage_options' ); // phpcs:ignore
    }

}

```
