<?php /** * @package FOF * @copyright 2010-2017 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 2 or later */ namespace FOF30\Model\DataModel\Filter; defined('_JEXEC') or die; class Relation extends Number { /** @var \JDatabaseQuery The COUNT subquery to filter by */ protected $subQuery = null; public function __construct($db, $relationName, $subQuery) { $field = (object)array( 'name' => $relationName, 'type' => 'relation', ); parent::__construct($db, $field); $this->subQuery = $subQuery; } public function callback($value) { return call_user_func($value, $this->subQuery); } public function getFieldName() { return '(' . (string)$this->subQuery . ')'; } }