Línea 92... |
Línea 92... |
92 |
$search = empty($search['value']) ? '' : filter_var($search['value'], FILTER_SANITIZE_STRING);
|
92 |
$search = empty($search['value']) ? '' : filter_var($search['value'], FILTER_SANITIZE_STRING);
|
Línea 93... |
Línea 93... |
93 |
|
93 |
|
Línea 94... |
Línea 94... |
94 |
$queryMapper = QueryMapper::getInstance($this->adapter);
|
94 |
$queryMapper = QueryMapper::getInstance($this->adapter);
|
95 |
|
95 |
|
96 |
$select = $queryMapper->getSql()->select();
|
96 |
$select = $queryMapper->getSql()->select();
|
97 |
$select->columns(['uuid', 'content','status','user_id','company_id']);
|
97 |
$select->columns(['uuid', 'content','status']);
|
98 |
$select->from(['test' => CompanySelfEvaluationTestMapper::_TABLE]);
|
98 |
$select->from(['test' => CompanySelfEvaluationTestMapper::_TABLE]);
|
Línea 99... |
Línea 99... |
99 |
$select->join(['form' => CompanySelfEvaluationFormMapper::_TABLE], 'test.form_id = form.id', ['name','language']);
|
99 |
$select->join(['form' => CompanySelfEvaluationFormMapper::_TABLE], 'test.form_id = form.id', ['name','language']);
|