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/locationdebateau/wp-content/plugins/betterdocs/includes/elementor/docs-page.php
<?php

namespace ElementorPro\Modules\Woocommerce\Conditions;

use ElementorPro\Modules\ThemeBuilder as ThemeBuilder;

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

class Docs_Page extends ThemeBuilder\Conditions\Condition_Base
{

	public static function get_type()
	{
		return 'archive';
	}

	public function get_name()
	{
		return 'docs_page';
	}

	public static function get_priority()
	{
		return 40;
	}

	public function get_label()
	{
		return __('Docs Page', 'betterdocs');
	}

	public function check($args)
	{
		return is_post_type_archive('docs');
	}
}