HEX
Server: LiteSpeed
System: Linux s787.bom1.mysecurecloudhost.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
User: mobilech (5348)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/tutor/components/Constants/Positions.php
<?php
/**
 * Position constants for the components
 *
 * @package Tutor\Components
 * @author Themeum
 * @link https://themeum.com
 * @since 4.0.0
 */

namespace Tutor\Components\Constants;

defined( 'ABSPATH' ) || exit;

/**
 * This class provides various position constants.
 *
 * @since 4.0.0
 */
abstract class Positions {

	/**
	 * Position Types
	 *
	 * @since 4.0.0
	 */
	public const LEFT         = 'left';
	public const LEFT_TOP     = 'left-top';
	public const LEFT_BOTTOM  = 'left-bottom';
	public const RIGHT        = 'right';
	public const RIGHT_TOP    = 'right-top';
	public const RIGHT_BOTTOM = 'right-bottom';
	public const TOP          = 'top';
	public const TOP_START    = 'top-start';
	public const TOP_END      = 'top-end';
	public const BOTTOM       = 'bottom';
	public const BOTTOM_START = 'bottom-start';
	public const BOTTOM_END   = 'bottom-end';
	public const CENTER       = 'center';
}