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