* @link https://www.fireplugins.com * @copyright Copyright © 2026 FirePlugins All Rights Reserved * @license GNU GPLv3 or later */ namespace FireBox\Core\Analytics\QueryBuilders\ConversionRate; if (!defined('ABSPATH')) { exit; // Exit if accessed directly. } class PagesStrategy extends BaseConversionRateQueryStrategy { public function getSelect(): string { return 'l.page as label, CASE WHEN COUNT(DISTINCT l.id) = 0 THEN 0 ELSE (COUNT(DISTINCT bld.id) / COUNT(DISTINCT l.id)) * 100 END AS total'; } public function getWhere(): string { return ''; } public function getGroupBy(): string { return 'GROUP BY l.page'; } public function getOrderBy(): string { $orderby = 'total desc'; $options = $this->metric->getOptions(); if (isset($options['orderby'])) { $orderby = $options['orderby']; } return 'ORDER BY ' . $orderby; } public function getHaving(): string { return ''; } }