/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Resultados::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'processo_id' => $this->processo_id]);
     $session = Yii::$app->session;
     $query->andFilterWhere(['processo_id' => $session['sess_processo']])->andFilterWhere(['like', 'resultado', $this->resultado]);
     return $dataProvider;
 }
 /**
  * Finds the Resultados model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @param integer $processo_id
  * @return Resultados the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Resultados::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
}
?>

    </li>
    </ul>
    



    <p><strong>LISTA DE RESULTADOS</strong></p>
    <ul class="list-group">
    <li class='list-group-item'>
        
    <?php 
$query_resultados = "SELECT * FROM resultados WHERE processo_id = '" . $id . "' ";
$resultado = Resultados::findBySql($query_resultados)->all();
foreach ($resultado as $resultados) {
    $Resultados = $resultados["resultado"];
    $arquivoResultados = substr($Resultados, strrpos($Resultados, '/') + 1);
    ?>
          <?php 
    echo "<div class='row'>";
    ?>
          <?php 
    echo '<a href="../web/uploads/resultados/' . $arquivoResultados . '" target="_blank">';
    ?>
          <?php 
    echo "<button type='button' class='btn btn-link'></button>";
    echo $arquivoResultados;
    ?>
          <?php