Backend\Core\Engine\DataGrid::decideIcon PHP Method

decideIcon() private method

Decides what icon to use by given name
private decideIcon ( $name ) : null | string
$name
return null | string
    private function decideIcon($name)
    {
        $name = mb_strtolower($name);
        if (!isset($this->mapIcons[$name])) {
            return null;
        }
        return $this->mapIcons[$name];
    }