Nessuna descrizione

Program.php 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. <?php
  2. class Program extends Eloquent
  3. {
  4. public function school()
  5. {
  6. return $this->belongsTo('School');
  7. }
  8. public function courses()
  9. {
  10. return $this->hasMany('Course')->with('semester')->whereIn('semester_id', Session::get('semesters_ids'))->orderBy('code')->orderBy('number')->orderBy('section');
  11. }
  12. public function coordinators()
  13. {
  14. return $this->hasMany('User');
  15. }
  16. public function professors()
  17. {
  18. return $this->hasMany('Professor');
  19. }
  20. public function students()
  21. {
  22. return $this->hasMany('Student');
  23. }
  24. public function templates()
  25. {
  26. return $this->hasMany('Template');
  27. }
  28. public function activities()
  29. {
  30. return $this->hasManyThrough('Activity', 'Course')->whereNotNull('activities.outcomes_attempted')->whereIn('semester_id', Session::get('semesters_ids'));
  31. }
  32. public function publishedActivities()
  33. {
  34. return $this->hasManyThrough('Activity', 'Course')->whereNotNull('activities.outcomes_attempted')->where('activities.draft', 0)->whereIn('semester_id', Session::get('semesters_ids'));
  35. }
  36. public function assessesOutcome($outcome_id)
  37. {
  38. foreach ($this->publishedActivities as $activity)
  39. {
  40. $outcomes_attempted = (array)$activity->o_att_array;
  41. if(array_key_exists($outcome_id, $outcomes_attempted) && $outcomes_attempted[$outcome_id] != 0)
  42. {
  43. return true;
  44. }
  45. }
  46. return false;
  47. }
  48. // return the users that are pcoords for a program
  49. public function users()
  50. {
  51. return $this->belongsToMany('User');
  52. }
  53. public function objectives()
  54. {
  55. return $this->hasMany('Objective');
  56. }
  57. // Return learning objectives ordered by outcome
  58. public function objectivesByOutcome()
  59. {
  60. // Objective::
  61. $objectives = DB::table('outcomes')
  62. ->select('outcomes.id as outcome_id', 'outcomes.name as outcome_name', 'objectives.id as objective_id', 'objectives.text', 'objectives.active')
  63. ->leftJoin('objectives', function($join)
  64. {
  65. $join
  66. ->on('outcomes.id', '=', 'objectives.outcome_id')
  67. ->where('objectives.program_id', '=', $this->id);
  68. })
  69. ->orderBy('outcome_name', 'ASC')
  70. ->orderBy('objectives.text', 'ASC')
  71. ->get();
  72. return $objectives;
  73. }
  74. public function hasObjectivesInOutcome($outcome_id)
  75. {
  76. return Objective::where('program_id', $this->id)
  77. ->where('outcome_id', $outcome_id)->count();
  78. }
  79. /**
  80. * Return all the criteria in/for the program, if any
  81. *
  82. * @return Illuminate\Database\Eloquent\Collection
  83. */
  84. public function criteria()
  85. {
  86. return $this->hasMany('Criterion');
  87. }
  88. // public function attempted_outcome($outcome_id, $semester)
  89. // {
  90. // $conteo= DB::table('activity_criterion')
  91. // ->join('activities', 'activity_criterion.activity_id', '=', 'activities.id')
  92. // ->join('courses', 'activities.course_id', '=', 'courses.id')
  93. // ->join('programs', 'programs.id', '=', 'courses.program_id')
  94. // ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'activity_criterion.criterion_id')
  95. // ->where('criterion_objective_outcome.outcome_id','=',$outcome_id)
  96. // ->where('programs.id','=',$this->id)
  97. // ->where('courses.semester_id','=',$semester)
  98. // ->count(DB::raw('DISTINCT criterion_objective_outcome.outcome_id'))
  99. // ;
  100. // return $conteo;
  101. // }
  102. public function attempted_criteria_by_outcome($outcome_id, $semesters)
  103. {
  104. $semesters_array=[];
  105. foreach($semesters as $semester)
  106. {
  107. $semesters_array[]=$semester->id;
  108. }
  109. $conteo= DB::table('activity_criterion')
  110. ->join('activities', 'activity_criterion.activity_id', '=', 'activities.id')
  111. ->join('courses', 'activities.course_id', '=', 'courses.id')
  112. ->join('programs', 'programs.id', '=', 'courses.program_id')
  113. ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'activity_criterion.criterion_id')
  114. ->where('criterion_objective_outcome.outcome_id','=',$outcome_id)
  115. ->where('programs.id','=',$this->id)
  116. ->whereIn('courses.semester_id',$semesters_array)
  117. ->count(DB::raw('DISTINCT criterion_objective_outcome.criterion_id'))
  118. ;
  119. return $conteo;
  120. }
  121. public function attempted_outcome($outcome_id, $semesters)
  122. {
  123. $semesters_array=[];
  124. foreach($semesters as $semester)
  125. {
  126. $semesters_array[]=$semester->id;
  127. }
  128. $conteo= DB::table('activity_criterion')
  129. ->join('activities', 'activity_criterion.activity_id', '=', 'activities.id')
  130. ->join('courses', 'activities.course_id', '=', 'courses.id')
  131. ->join('programs', 'programs.id', '=', 'courses.program_id')
  132. ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'activity_criterion.criterion_id')
  133. ->where('criterion_objective_outcome.outcome_id','=',$outcome_id)
  134. ->where('programs.id','=',$this->id)
  135. ->whereIn('courses.semester_id',$semesters_array)
  136. ->count(DB::raw('DISTINCT criterion_objective_outcome.outcome_id'))
  137. ;
  138. return $conteo;
  139. }
  140. public function achieved_criteria_by_outcome($outcome_id, $semesters)
  141. {
  142. $semesters_array=[];
  143. foreach($semesters as $semester)
  144. {
  145. $semesters_array[]=$semester->id;
  146. }
  147. // DB::enableQueryLog();
  148. // dd(DB::getQueryLog());
  149. // $criteria=DB::table('new_criteria')
  150. // ->join('activity_criterion', 'activity_criterion.criterion_id', '=', 'new_criteria.id')
  151. // ->join('activities', 'activity_criterion.activity_id', '=', 'activities.id')
  152. // ->join('courses', 'activities.course_id', '=', 'courses.id')
  153. // ->join('programs', 'programs.id', '=', 'courses.program_id')
  154. // ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'new_criteria.id')
  155. // ->where('criterion_objective_outcome.outcome_id','=',$outcome_id)
  156. // ->where('programs.id','=',$this->id)
  157. // ->whereIn('courses.semester_id',$semesters_array)
  158. // ->select('new_criteria.id','expected_percentage_students_achieving','activity_criterion.activity_id')
  159. // ->distinct()
  160. // ->get()
  161. // ;
  162. $criteria=DB::table('criteria')
  163. ->join('activity_criterion', 'activity_criterion.criterion_id', '=', 'criteria.id')
  164. ->join('activities', 'activity_criterion.activity_id', '=', 'activities.id')
  165. ->join('courses', 'activities.course_id', '=', 'courses.id')
  166. ->join('programs', 'programs.id', '=', 'courses.program_id')
  167. ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'criteria.id')
  168. ->join('rubric_activity', 'rubric_activity.activity_id', '=', 'activities.id')
  169. ->join('rubrics', 'rubric_activity.rubric_id', '=', 'rubrics.id')
  170. ->where('criterion_objective_outcome.outcome_id','=',$outcome_id)
  171. ->where('programs.id','=',$this->id)
  172. ->whereIn('courses.semester_id',$semesters_array)
  173. ->select('criteria.id','expected_percentage','activity_criterion.activity_id')
  174. ->distinct()
  175. ->get()
  176. ;
  177. // dd(DB::getQueryLog());
  178. $conteo=0;
  179. $attempted_criteria_per_program_array=[];
  180. // $students_attempted=0;
  181. // $students_achieved=0;
  182. foreach($criteria as $criterion)
  183. {
  184. if(!isset($students_attempted[$criterion->id]))$students_attempted[$criterion->id]=0;
  185. if(!isset($students_achieved[$criterion->id]))$students_achieved[$criterion->id]=0;
  186. $attempted_criteria_per_program_array[$criterion->id]=1;
  187. $students_attempted[$criterion->id]+=Criterion::students_attempted($criterion->id, $criterion->activity_id);
  188. $students_achieved[$criterion->id]+=Criterion::students_achieved($criterion->id, $criterion->activity_id);
  189. }
  190. // var_dump($outcome_id);
  191. // var_dump($this->id);
  192. // if(isset($students_attempted))var_dump($students_attempted);
  193. // else{print "aqui hay algo";}
  194. // print "<br>";
  195. // if(isset($students_achieved))var_dump($students_achieved);
  196. // print "<br>";
  197. // print "<br>";
  198. // exit();
  199. if(isset($students_attempted))
  200. {
  201. foreach($students_attempted as $criteria_id => $students_attempted_n)
  202. {
  203. if($students_attempted_n)
  204. {
  205. $percentage_students_who_achieved=100.0*$students_achieved[$criteria_id]/$students_attempted[$criteria_id];
  206. }
  207. else
  208. {
  209. $percentage_students_who_achieved=0;
  210. }
  211. if($percentage_students_who_achieved>=$criterion->expected_percentage)
  212. {
  213. $conteo++;
  214. }
  215. }
  216. }
  217. $attempted_criteria_per_program=count($attempted_criteria_per_program_array);
  218. $achievedProgramOutcome=0;
  219. $outcome=Outcome::where('id',$outcome_id)->select('expected_outcome')->first();
  220. // var_dump($outcome->expected_outcome);
  221. // exit();
  222. if($attempted_criteria_per_program!=0 && 100.0*$conteo/$attempted_criteria_per_program >= $outcome->expected_outcome)
  223. {
  224. $achievedProgramOutcome=1;
  225. // $output[]= 'END OF PROGRAM: '.$program->name.'-'.json_encode($achievedProgramsPerOutcome);
  226. }
  227. return $conteo;
  228. }
  229. public function achieved_outcome($outcome_id, $semesters)
  230. {
  231. $semesters_array=[];
  232. foreach($semesters as $semester)
  233. {
  234. $semesters_array[]=$semester->id;
  235. }
  236. // DB::enableQueryLog();
  237. // dd(DB::getQueryLog());
  238. // $criteria=DB::table('new_criteria')
  239. // ->join('activity_criterion', 'activity_criterion.criterion_id', '=', 'new_criteria.id')
  240. // ->join('activities', 'activity_criterion.activity_id', '=', 'activities.id')
  241. // ->join('courses', 'activities.course_id', '=', 'courses.id')
  242. // ->join('programs', 'programs.id', '=', 'courses.program_id')
  243. // ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'new_criteria.id')
  244. // ->where('criterion_objective_outcome.outcome_id','=',$outcome_id)
  245. // ->where('programs.id','=',$this->id)
  246. // ->whereIn('courses.semester_id',$semesters_array)
  247. // ->select('new_criteria.id','expected_percentage_students_achieving','activity_criterion.activity_id')
  248. // ->distinct()
  249. // ->get()
  250. // ;
  251. $criteria=DB::table('criteria')
  252. ->join('activity_criterion', 'activity_criterion.criterion_id', '=', 'criteria.id')
  253. ->join('activities', 'activity_criterion.activity_id', '=', 'activities.id')
  254. ->join('courses', 'activities.course_id', '=', 'courses.id')
  255. ->join('programs', 'programs.id', '=', 'courses.program_id')
  256. ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'criteria.id')
  257. ->join('rubric_activity', 'rubric_activity.activity_id', '=', 'activities.id')
  258. ->join('rubrics', 'rubric_activity.rubric_id', '=', 'rubrics.id')
  259. ->where('criterion_objective_outcome.outcome_id','=',$outcome_id)
  260. ->where('programs.id','=',$this->id)
  261. ->whereIn('courses.semester_id',$semesters_array)
  262. ->select('criteria.id','expected_percentage','activity_criterion.activity_id')
  263. ->distinct()
  264. ->get()
  265. ;
  266. // dd(DB::getQueryLog());
  267. $conteo=0;
  268. $attempted_criteria_per_program_array=[];
  269. // $students_attempted=0;
  270. // $students_achieved=0;
  271. foreach($criteria as $criterion)
  272. {
  273. if(!isset($students_attempted[$criterion->id]))$students_attempted[$criterion->id]=0;
  274. if(!isset($students_achieved[$criterion->id]))$students_achieved[$criterion->id]=0;
  275. $attempted_criteria_per_program_array[$criterion->id]=1;
  276. $students_attempted[$criterion->id]+=Criterion::students_attempted($criterion->id, $criterion->activity_id);
  277. $students_achieved[$criterion->id]+=Criterion::students_achieved($criterion->id, $criterion->activity_id);
  278. }
  279. // var_dump($outcome_id);
  280. // var_dump($this->id);
  281. // if(isset($students_attempted))var_dump($students_attempted);
  282. // else{print "aqui hay algo";}
  283. // print "<br>";
  284. // if(isset($students_achieved))var_dump($students_achieved);
  285. // print "<br>";
  286. // print "<br>";
  287. // exit();
  288. if(isset($students_attempted))
  289. {
  290. foreach($students_attempted as $criteria_id => $students_attempted_n)
  291. {
  292. if($students_attempted_n)
  293. {
  294. $percentage_students_who_achieved=100.0*$students_achieved[$criteria_id]/$students_attempted[$criteria_id];
  295. }
  296. else
  297. {
  298. $percentage_students_who_achieved=0;
  299. }
  300. if($percentage_students_who_achieved>=$criterion->expected_percentage)
  301. {
  302. $conteo++;
  303. }
  304. }
  305. }
  306. $attempted_criteria_per_program=count($attempted_criteria_per_program_array);
  307. $achievedProgramOutcome=0;
  308. $outcome=Outcome::where('id',$outcome_id)->select('expected_outcome')->first();
  309. // var_dump($outcome->expected_outcome);
  310. // exit();
  311. if($attempted_criteria_per_program!=0 && 100.0*$conteo/$attempted_criteria_per_program >= $outcome->expected_outcome)
  312. {
  313. $achievedProgramOutcome=1;
  314. // $output[]= 'END OF PROGRAM: '.$program->name.'-'.json_encode($achievedProgramsPerOutcome);
  315. }
  316. return $achievedProgramOutcome;
  317. }
  318. public static function generalComponentPrograms(){
  319. return self::whereIn('id', array(123,124,125,126,127,128,129))->get();
  320. }
  321. public function assessmentOverview(){
  322. $assessment_overview = array();
  323. $assessment_overview['program_courses'] = $this->courses;
  324. $outcomeCount = Outcome::all()->count();
  325. $assessment_overview['outcomes_achieved'] = array_fill(1, $outcomeCount, 0);
  326. $assessment_overview['outcomes_attempted'] = array_fill(1, $outcomeCount, 0);
  327. $assessment_overview['assessed_courses_count'] = 0;
  328. foreach ($assessment_overview['program_courses'] as $course)
  329. {
  330. if($course->outcomes_achieved!=NULL)
  331. {
  332. $course_outcomes_achieved =json_decode($course->outcomes_achieved, true);
  333. $course_outcomes_attempted =json_decode($course->outcomes_attempted, true);
  334. for($i=1; $i<=count($assessment_overview['outcomes_attempted']); $i++)
  335. {
  336. $assessment_overview['outcomes_achieved'][$i]+=$course_outcomes_achieved[$i];
  337. $assessment_overview['outcomes_attempted'][$i]+=$course_outcomes_attempted[$i];
  338. }
  339. $assessment_overview['assessed_courses_count']+=1;
  340. }
  341. }
  342. /**
  343. * List of grouped courses (grouped sections)
  344. */
  345. $assessment_overview['grouped_courses'] = Course::
  346. select(DB::raw('name, code, number, max(outcomes_attempted) as outcomes_attempted, semester_id, program_id'))
  347. ->with('semester')
  348. ->with('program')
  349. ->where('program_id', $this->id)
  350. ->whereIn('semester_id', Session::get('semesters_ids'))
  351. ->groupBy(array('code', 'number', 'semester_id'))
  352. ->orderBy('code')
  353. ->orderBy('number')
  354. ->orderBy('semester_id')
  355. ->get();
  356. Log::info(Course::
  357. select(DB::raw('name, code, number, max(outcomes_attempted) as outcomes_attempted, semester_id, program_id'))
  358. ->with('semester')
  359. ->with('program')
  360. ->where('program_id', $this->id)
  361. ->whereIn('semester_id', Session::get('semesters_ids'))
  362. ->groupBy(array('code', 'number', 'semester_id'))
  363. ->orderBy('code')
  364. ->orderBy('number')
  365. ->orderBy('semester_id')
  366. ->toSql());
  367. return $assessment_overview;
  368. }
  369. }