We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No ficheiro Editor.php, adicionar procurar as linhas
/** @var string Action name allowing for configuration */ private $_actionName = 'action';
e adicionar após
/** @var string */ private $_group_by = '';
Adicionar a função
/** * @param string $column * * @return ($column is null ? string[] : $this) Where condition array. */ public function groupBy($column) { if ($column === null) { return $this->_group_by; } $this->_group_by = $column; return $this; }
Na função private function _get($id = null, $http = null)
Procurar a linha $ssp = $this->_ssp_query($query, $http); e adicionar depois da mesma
$ssp = $this->_ssp_query($query, $http);
if($this->_group_by != '') $query->group_by($this->_group_by); if ($id !== null) { $query->where($this->pkeyToArray($id, true)); }
Pode ser sempre melhorada foi uma alteração que fiz para poder usar o group by no editor
The text was updated successfully, but these errors were encountered:
No branches or pull requests
No ficheiro Editor.php, adicionar procurar as linhas
e adicionar após
Adicionar a função
Na função
private function _get($id = null, $http = null)
Procurar a linha
$ssp = $this->_ssp_query($query, $http);
e adicionar depois da mesmaPode ser sempre melhorada foi uma alteração que fiz para poder usar o group by no editor
The text was updated successfully, but these errors were encountered: