Files
citrus-cms/app/DevExtreme/SummaryContext.php
T
2026-04-28 21:14:25 +03:00

20 lines
348 B
PHP

<?php
namespace App\DevExtreme;
class SummaryContext
{
protected static bool $excludeMechanical = false;
public static function setExcludeMechanical(bool $flag): void
{
self::$excludeMechanical = $flag;
}
public static function shouldExcludeMechanical(): bool
{
return self::$excludeMechanical;
}
}