. declare(strict_types=1); namespace core_reportbuilder\local\aggregation; use lang_string; use core_reportbuilder\local\report\column; /** * Base class for column aggregation types * * @package core_reportbuilder * @copyright 2021 Paul Holden * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class base { /** * Return the class name of the aggregation type * * @return string */ final public static function get_class_name(): string { $namespacedclass = explode('\\', get_called_class()); return end($namespacedclass); } /** * Return the display name of the aggregation * * @return lang_string */ abstract public static function get_name(): lang_string; /** * Whether the aggregation is compatible with the given column type * * @param int $columntype The type as defined by the {@see column::set_type} method * @return bool */ abstract public static function compatible(int $columntype): bool; /** * Return the aggregated field SQL * * @param string $field * @param int $columntype * @return string */ abstract public static function get_field_sql(string $field, int $columntype): string; /** * Return formatted value for column when applying aggregation * * @param mixed $value * @param array $values * @param array $callbacks * @return mixed */ abstract public static function format_value($value, array $values, array $callbacks); }