HEX
Server: Apache
System: Linux webd006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: zwafgyp (177615)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/zwafgyp/lacalita/wp-content/plugins/rey-core/inc/modules/quickview/comp-bottom-right.php
<?php
namespace ReyCore\Modules\Quickview;

if (!defined('ABSPATH')) exit; // Exit if accessed directly

class CompBottomRight extends \ReyCore\WooCommerce\LoopComponents\Component {

	public function status(){
		return reycore_wc__get_setting('loop_quickview') != '2' && $this->group_default();
	}

	public function get_id(){
		return 'quickview-bottomright';
	}

	public function get_name(){
		return 'Quickview - Bottom Right';
	}

	public function get_group(){
		return 'quickview';
	}

	public function group_default(){
		return reycore_wc__get_setting('loop_quickview_position') === 'bottomright';
	}

	public function scheme(){
		return [
			'type'          => 'action',
			'tag'           => 'reycore/loop_inside_thumbnail/bottom-right',
			'priority'      => 10,
		];
	}

	public function render(){
		do_action('reycore/woocommerce/loop/quickview_button');
	}

}