. declare(strict_types=1); namespace core_reportbuilder\local\aggregation; use lang_string; use core_reportbuilder\local\report\column; /** * Column count aggregation type * * @package core_reportbuilder * @copyright 2021 Paul Holden * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class count extends base { /** * Return aggregation name * * @return lang_string */ public static function get_name(): lang_string { return new lang_string('aggregationcount', 'core_reportbuilder'); } /** * This aggregation can be performed on all column types * * @param int $columntype * @return bool */ public static function compatible(int $columntype): bool { return true; } /** * Return the aggregated field SQL * * @param string $field * @param int $columntype * @return string */ public static function get_field_sql(string $field, int $columntype): string { return "COUNT({$field})"; } /** * Returns aggregated column type * * @param int $columntype * @return int */ public static function get_column_type(int $columntype): int { return column::TYPE_INTEGER; } /** * Return formatted value for column when applying aggregation * * @param mixed $value * @param array $values * @param array $callbacks * @param int $columntype * @return int */ public function format_value($value, array $values, array $callbacks, int $columntype): int { return (int) reset($values); } }