Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

28 lines
585B

  1. <?php
  2. namespace App\Models;
  3. use CodeIgniter\Model;
  4. class PreguntaModel extends Model
  5. {
  6. protected $table = 'questions';
  7. protected $primaryKey = 'id';
  8. protected $useTimestamps = true;
  9. protected $allowedFields = ['question', 'frm_option', 'type', 'order_by', 'survey_id'];
  10. protected $validationRules = [
  11. 'question' => 'required',
  12. 'survey_id' => 'required',
  13. 'type' => 'required',
  14. ];
  15. public function getPreguntas($encuestaId)
  16. {
  17. return $this
  18. ->where('survey_id', $encuestaId)
  19. ->findAll();
  20. }
  21. }