123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793 |
- <?php
-
- use Illuminate\Database\Eloquent\Collection;
-
- class OutcomesController extends \BaseController
- {
-
-
- /**
- * Show all Learning Outcomes and expected values
- *
- */
- public function index()
- {
- $title = "Learning Outcomes";
- $outcomes = Outcome::withTrashed()->orderBy('name', 'ASC')->get();
- $schools = School::orderBy('name', 'ASC')->get();
- // $semesters_ids = Session::get('semesters_ids');
- // $semesters = Semester::whereIn('id',$semesters_ids)->get();
-
- return View::make('local.managers.admins.learning-outcomes', compact('title', 'outcomes', 'schools'));
- //return View::make('local.managers.admins.learning-outcomes', compact('title', 'outcomes', 'schools','semesters'));
- }
-
- // TODO: Change to home page
- public function newIndex()
- {
- $title = "Learning Outcomes";
- // TODO: Check when semester doesnt exist or session is empty
- $selected_semester = Semester::find(Session::get('semesters_ids')[0]);
- $outcomes = Outcome::withTrashed()->where('deactivation_date', '>=', $selected_semester->start)->orWhere('deactivation_date', null)->orderBy('name', 'ASC')->get();
- $schools = School::orderBy('name', 'ASC')->get();
-
- return View::make('local.managers.admins.new-learning-outcomes', compact('title', 'outcomes', 'schools'));
- }
-
- public function show($id)
- {
- $outcome = Outcome::find($id);
- $selected_semesters = Semester::find(Session::get('semesters_ids'));
- $programs = $outcome->programs_attempted($selected_semesters);
-
- $undergradResults = array("names" => array(), "schools" => array(), "achieved" => array(), "attempted" => array(), "successRate" => array());
- $gradResults = array("names" => array(), "schools" => array(), "achieved" => array(), "attempted" => array(), "successRate" => array());
- foreach ($programs as $program_id) {
- // var_dump($program_id);
- // exit();
- $program = Program::where('id', '=', $program_id->id)->first();
- $school = School::where('id', '=', $program->school_id)->first();
- if ($program->is_graduate) {
- $gradResults['names'][] = $program->name;
- $gradResults['schools'][] = $school->name;
- $attempted = $program->attempted_criteria_by_outcome($id, $selected_semesters);
- $gradResults['attempted'][] = $attempted;
- $achieved = $program->achieved_criteria_by_outcome($id, $selected_semesters);
- $gradResults['achieved'][] = $achieved;
- $gradResults['successRate'][] = sprintf("%.2f", 100 * $achieved / $attempted);
- } else {
- $undergradResults['names'][] = $program->name;
- $undergradResults['schools'][] = $school->name;
- $attempted = $program->attempted_criteria_by_outcome($id, $selected_semesters);
- $undergradResults['attempted'][] = $attempted;
- $achieved = $program->achieved_criteria_by_outcome($id, $selected_semesters);
- $undergradResults['achieved'][] = $achieved;
- $undergradResults['successRate'][] = sprintf("%.2f", 100 * $achieved / $attempted);
- }
- }
-
- $title = "Outcome Results: " . $outcome->name;
-
-
- // $undergradResults["successRate"]
-
- return View::make('local.managers.admins.learning-outcome_new', compact('title', 'outcome', 'undergradResults', 'gradResults'));
- }
-
- // public function show($id)
- // {
- // DB::disableQueryLog();
- // $outcome = Outcome::find($id);
- //
- // $undergradResults=array("names"=>array(), "schools"=>array(), "achieved"=>array(), "attempted"=>array(), "successRate"=>array());
- // $gradResults = array("names"=>array(), "schools"=>array(), "achieved"=>array(), "attempted"=>array(), "successRate"=>array());
- //
- // //Calculate performance for this outcome for each undergrad program
- // $undergradPrograms = Program::where('is_graduate','=', 0)
- // ->where(function($query)
- // {
- // if(Auth::user()->school_id)
- // {
- // $query->where('school_id', Auth::user()->school_id);
- // }
- // })
- // ->with('courses')
- // ->orderBy('name', 'asc')->get();
- //
- // foreach($undergradPrograms as $program)
- // {
- // $undergradResults["names"][$program->id]=$program->name;
- // $undergradResults["schools"][$program->id]=$program->school->name;
- // $programAssessed=false;
- //
- // $undergradResults["attempted"][$program->id]=0;
- // $undergradResults["achieved"][$program->id]=0;
- //
- // foreach($program->courses as $course)
- // {
- // $course_outcomes_achieved = json_decode($course->outcomes_achieved, true);
- // $course_outcomes_attempted = json_decode($course->outcomes_attempted, true);
- //
- // $attemptedCriteriaCount=0;
- // $achievedCriteriaCount=0;
- //
- // // If this outcome was evaluated
- // if(
- // $course_outcomes_attempted
- // && array_key_exists($outcome->id, $course_outcomes_attempted)
- // && $course_outcomes_attempted[$outcome->id]!=0)
- // {
- // // Count +1 for attempted and achieved in the program
- // $attemptedCriteriaCount+=$course_outcomes_attempted[$outcome->id];
- // $achievedCriteriaCount+=$course_outcomes_achieved[$outcome->id];
- // $programAssessed=true;
- //
- // if($attemptedCriteriaCount>0 &&(float)$achievedCriteriaCount/$attemptedCriteriaCount*100 > $outcome->expected_outcome)
- // {
- // $undergradResults["achieved"][$program->id]+=1;
- // }
- // $undergradResults["attempted"][$program->id]+=1;
- // }
- // }
- //
- // // Calculate success rate for this program
- // if($programAssessed && $undergradResults["attempted"][$program->id]>0)
- // $undergradResults["successRate"][$program->id]= round((float)$undergradResults["achieved"][$program->id]/$undergradResults["attempted"][$program->id]*100, 2).'%';
- // else
- // $undergradResults["successRate"][$program->id]= 'N/M';
- // }
- //
- //
- // //Calculate performance for this outcome for each grad program
- // $gradPrograms = Program::where('is_graduate','=', 1)
- // ->where(function($query)
- // {
- // if(Auth::user()->school_id)
- // {
- // $query->where('school_id', Auth::user()->school_id);
- // }
- // })
- // ->with(array('courses'=>function($query)
- // {
- // $query->whereNotNull('outcomes_attempted');
- // }))
- // ->orderBy('name', 'asc')->get();
- //
- // foreach($gradPrograms as $program)
- // {
- // $gradResults["names"][$program->id]=$program->name;
- // $gradResults["schools"][$program->id]=$program->school->name;
- //
- // $programAssessed=false;
- //
- // $gradResults["attempted"][$program->id]=0;
- // $gradResults["achieved"][$program->id]=0;
- //
- // foreach($program->courses as $course)
- // {
- // $course_outcomes_achieved = json_decode($course->outcomes_achieved, true);
- // $course_outcomes_attempted = json_decode($course->outcomes_attempted, true);
- //
- // $attemptedCriteriaCount=0;
- // $achievedCriteriaCount=0;
- //
- // // If this outcome was evaluated
- // if(
- // $course_outcomes_attempted
- // && array_key_exists($outcome->id, $course_outcomes_attempted)
- // && $course_outcomes_attempted[$outcome->id]!=0)
- // {
- // // Count +1 for attempted and achieved in the program
- // $attemptedCriteriaCount+=$course_outcomes_attempted[$outcome->id];
- // $achievedCriteriaCount+=$course_outcomes_achieved[$outcome->id];
- // $programAssessed=true;
- //
- // if($attemptedCriteriaCount>0 &&(float)$achievedCriteriaCount/$attemptedCriteriaCount*100 > $outcome->expected_outcome)
- // {
- // $gradResults["achieved"][$program->id]+=1;
- // }
- // $gradResults["attempted"][$program->id]+=1;
- // }
- // }
- //
- // // Calculate success rate for this program
- // if($programAssessed && $gradResults["attempted"][$program->id]>0)
- // $gradResults["successRate"][$program->id]= round((float)$gradResults["achieved"][$program->id]/$gradResults["attempted"][$program->id]*100, 2).'%';
- // else
- // $gradResults["successRate"][$program->id]= 'N/M';
- // }
- //
- // $title = "Outcome Results: ".$outcome->name;
- //
- // return View::make('local.managers.admins.learning-outcome', compact('title', 'outcome', 'undergradResults', 'gradResults'));
- // }
-
- // TODO: Clean up and verify relationships are correct
- public function newShow($id)
- {
- // DB::disableQueryLog();
- // $outcome = null;
- if ($id === 'all') {
- $outcome = Outcome::with('objectives.criteria')->get();
- $title = 'All Outcomes';
- $criteria = $outcome->reduce(function ($carry, $outcome) {
- return $carry->merge($outcome->criteria);
- }, Collection::make([]));
- $report_link = URL::action('OutcomesController@newReportAll');
- } else {
- $outcome = Outcome::with(['objectives.criteria'])->find($id);
- $title = $outcome->name;
- $criteria = $outcome->criteria->load('rubrics');
- $report_link = URL::action('OutcomesController@newReport', ['id' => $outcome->id]);
- }
-
- // $objectives = $outcome->objectives;
- // var_dump(get_class_methods($criteria));
- // var_dump($criteria);
- $rubrics = $criteria->reduce(function ($carry, $crit) {
- return $carry->merge($crit->rubrics);
- }, Collection::make([]))->load('activities');
- $activities = $rubrics->reduce(function ($carry, $rubric) {
- return $carry->merge($rubric->activities);
- }, Collection::make([]));
- $courses = $activities->reduce(function ($carry, $activity) {
- if ($activity->course !== null) {
- $carry->push($activity->course);
- }
- return $carry;
- }, Collection::make([]));
- $activities = $activities->filter(function ($activity) {
- return ($activity->course === null);
- });
-
- // var_dump(DB::getQueryLog());
- return View::make('local.managers.admins.new-learning-outcome', compact('title', 'outcome', 'courses', 'activities', 'report_link'));
- }
-
- public function newReport($id)
- {
- $outcome = Outcome::find($id);
- $objectives = $outcome->objectives;
- $criteria = $outcome->criteria;
- $programs = $objectives->map(function ($objective) {
- return $objective->program;
- })
- ->merge($criteria->map(function ($criteria) {
- return $criteria->program;
- }))
- ->filter(function ($program) {
- return $program->users->contains(Auth::user());
- });
- $title = $outcome->name . ' Report';
-
-
- return View::make('local.managers.admins.new-report', compact('title', 'outcome', 'objectives'));
- }
-
- public function newReportAll()
- {
- $outcomes = Outcome::with('objectives')->get();
- $title = 'All Outcomes Report';
-
- return View::make('local.managers.admins.new-report-all', compact('title', 'outcomes'));
- }
-
- public function update()
- {
- $outcomeArray = json_decode(Input::get('outcomeArray'), true);
- Session::flash('status', 'success');
- Session::flash('message', 'Learning Outcomes updated.');
-
- foreach ($outcomeArray as $outcomeObject) {
-
-
- $validator = Validator::make(
- array(
- 'name' => $outcomeObject['name'],
- 'definition' => $outcomeObject['definition'],
- 'expected_outcome' => $outcomeObject['expected_outcome']
- ),
- array(
- 'name' => 'required',
- 'definition' => 'required',
- 'expected_outcome' => 'required|numeric'
- )
- );
-
- if (!$validator->fails()) {
- try {
- $outcome = Outcome::withTrashed()
- ->where('id', '=', $outcomeObject['id'])
- ->firstOrFail();
- $outcome->name = $outcomeObject['name'];
- $outcome->definition = $outcomeObject['definition'];
- $outcome->expected_outcome = $outcomeObject['expected_outcome'];
- $outcome->save();
-
- // If delete is 1, and outcome isn't already trashed, delete
- if ($outcomeObject['delete'] == 1 && !$outcome->trashed())
- $outcome->delete();
- // If delete is 0, and outcome is already trashed, restore
- elseif ($outcomeObject['delete'] == 0 && $outcome->trashed())
- $outcome->restore();
- } catch (Exception $e) {
-
- Session::flash('message', $e->getMessage());
- }
- } else {
- /** Prepare error message */
- $message = 'Error(s) updating the Learning Outcomes: <ul>';
-
- foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
- $message .= $validationError;
- }
-
- $message .= '</ul>';
-
- /** Send error message and old data */
- Session::flash('status', 'danger');
- Session::flash('message', $message);
- return;
- }
- }
-
- return;
- }
-
- /**
- *Copy of update(), but also updates activation_date, deactivation_date and level
- */
- public function updateMore()
- {
- $outcomeArray = json_decode(Input::get('outcomeArray'), true);
- Session::flash('status', 'success');
- Session::flash('message', 'Learning Outcomes updated.');
-
- foreach ($outcomeArray as $outcomeObject) {
-
-
- $validator = Validator::make(
- array(
- 'name' => $outcomeObject['name'],
- 'definition' => $outcomeObject['definition'],
- 'expected_outcome' => $outcomeObject['expected_outcome']
- // TODO- validar los otros 3 valores
- ),
- array(
- 'name' => 'required',
- 'definition' => 'required',
- 'expected_outcome' => 'required|numeric'
- // TODO- los requisitos de los otros 3 valores
- )
- );
-
- if (!$validator->fails()) {
- try {
- $outcome = Outcome::withTrashed()
- ->where('id', '=', $outcomeObject['id'])
- ->firstOrFail();
- $outcome->name = $outcomeObject['name'];
- $outcome->definition = $outcomeObject['definition'];
- $outcome->expected_outcome = $outcomeObject['expected_outcome'];
- $outcome->activation_date = $outcomeObject['activation_date'];
- $outcome->deactivation_date = $outcomeObject['deactivation_date'];
- $outcome->level = $outcomeObject['level'];
- $outcome->save();
-
- // If delete is 1, and outcome isn't already trashed, delete
- if ($outcomeObject['delete'] == 1 && !$outcome->trashed())
- $outcome->delete();
- // If delete is 0, and outcome is already trashed, restore
- elseif ($outcomeObject['delete'] == 0 && $outcome->trashed())
- $outcome->restore();
- } catch (Exception $e) {
-
- Session::flash('message', $e->getMessage());
- }
- } else {
- /** Prepare error message */
- $message = 'Error(s) updating the Learning Outcomes: <ul>';
-
- foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
- $message .= $validationError;
- }
-
- $message .= '</ul>';
-
- /** Send error message and old data */
- Session::flash('status', 'danger');
- Session::flash('message', $message);
- return;
- }
- }
-
- return;
- }
-
- public function fetchCriteria()
- {
-
- if (Input::get('filter')) {
- switch (Input::get('filter')) {
- case 'all':
- return DB::table('criteria')
- ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'criteria.id')
- ->where('criterion_objective_outcome.outcome_id', '=', Input::get('id'))
- ->select('criterion_id as id', 'name')
- ->orderBy('name', 'ASC')
- ->get();
- break;
-
- case 'school':
- // If scoord
- if (Auth::user()->role == '2') {
-
- // Fetch all the programs whose school is the user's
- $program_ids = DB::table('programs')->where('school_id', Auth::user()->school_id)->lists('id');
- $criteria = DB::table('criteria')
- ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'criteria.id')
- ->join('program_criterion', 'program_criterion.criterion_id', '=', 'criteria.id')
- ->where('criterion_objective_outcome.outcome_id', '=', Input::get('id'))
- ->whereIn('program_criterion.program_id', $program_ids)
- ->select('criterion_id as id', 'name')
- ->orderBy('name', 'ASC')
- ->get();
- // Return all criteria belonging to any of those programs
- return $criteria;
- }
-
- // If pcoord
- else {
-
- // Fetch all the programs from the user's school;
- $program_ids = DB::table('programs')->where('school_id', Auth::user()->programs[0]->school->id)->lists('id');
-
- return DB::table('criteria')
- ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'criteria.id')
- ->join('program_criterion', 'program_criterion.criterion_id', '=', 'criteria.id')
- ->where('criterion_objective_outcome.outcome_id', '=', Input::get('id'))
- ->whereIn('program_criterion.program_id', $program_ids)
- ->select('criterion_id as id', 'name')
- ->orderBy('name', 'ASC')
- ->get();
- }
-
- break;
-
- case 'program':
- $criteria = DB::table('criteria')
- ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'criteria.id')
- ->join('program_criterion', 'program_criterion.criterion_id', '=', 'criteria.id')
- ->where('criterion_objective_outcome.outcome_id', '=', Input::get('id'))
- ->whereIn('program_criterion.program_id', Auth::user()->programs->lists('id'))
- ->select('criterion_id as id', 'name')
- ->orderBy('name', 'ASC')
- ->get();
- return $criteria;
- break;
-
- default:
- return DB::table('criteria')
- ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'criteria.id')
- ->where('criterion_objective_outcome.outcome_id', '=', Input::get('id'))
- ->select('criterion_id as id', 'name')
- ->orderBy('name', 'ASC')
- ->get();
- break;
- }
- } else {
- return DB::table('criteria')
- ->join('criterion_objective_outcome', 'criterion_objective_outcome.criterion_id', '=', 'criteria.id')
- ->where('criterion_objective_outcome.outcome_id', '=', Input::get('id'))
- ->select('criterion_id as id', 'name')
- ->orderBy('name', 'ASC')
- ->get();
- }
- }
-
- /**
- * Create a new learning outcome.
- */
- public function create()
- {
- /** Validation rules */
- $validator = Validator::make(
- array(
- 'name' => Input::get('name'),
- 'definition' => Input::get('definition')
- ),
- array(
- 'name' => 'required|unique:outcomes',
- 'definition' => 'required|min:10'
- )
- );
-
- /** If validation fails */
- if ($validator->fails()) {
- /** Prepare error message */
- $message = '<p>Error(s) creating a new Learning Outcome</p><ul>';
-
- foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
- $message .= $validationError;
- }
-
- $message .= '</ul>';
-
- /** Send error message and old data */
- Session::flash('status', 'warning');
- Session::flash('message', $message);
- return Redirect::to('learning-outcomes')->withInput();
- } else {
- /** Instantiate new outcome */
- $outcome = new Outcome;
- $outcome->name = Input::get('name');
- $outcome->definition = Input::get('definition');
-
- /** If outcome is saved, send success message */
- if ($outcome->save()) {
- Session::flash('status', 'success');
- Session::flash('message', '<p>Learning Outcome added.</p>');
- return Redirect::to('learning-outcomes');
- }
-
- /** If saving fails, send error message and old data */
- else {
- Session::flash('status', 'warning');
- Session::flash('message', '<p>Error adding Learning Outcome. Please try again later.</p>');
- return Redirect::to('learning-outcomes')->withInput();
- }
- }
- }
-
- public function fetchOutcome()
- {
- // original code using models
- // TODO: models have to be updated because of the database update
-
- $id = Input::get('id');
-
- $outcome_info = DB::table('outcomes')
- ->where('outcomes.id', $id)
- ->get();
- $outcome = $outcome_info[0];
-
- $diferent_levels = DB::table('criterion_objective_outcome')
- ->join('criteria', 'criteria.id', '=', 'criterion_objective_outcome.criterion_id')
- ->join('objectives', 'objectives.id', '=', 'criterion_objective_outcome.objective_id')
- ->where('criterion_objective_outcome.outcome_id', $id)
- ->distinct('criteria.number_of_scales')
- ->select('criteria.number_of_scales as levels')
- ->orderBy('criteria.number_of_scales', 'asc')
- ->get();
-
- $criteria_array = array();
-
- $outcome->criteria = array();
- foreach ($diferent_levels as $level) {
- $level = $level->levels;
-
- // buscar todos los criterios con el level y ponerlos en un array
- // $outcome_criterias = DB::table('criterion_objective_outcome')
- // ->join('new_criteria', 'new_criteria.id', '=', 'criterion_objective_outcome.criterion_id')
- // ->join('objectives', 'objectives.id', '=', 'criterion_objective_outcome.objective_id')
- // ->where('criterion_objective_outcome.outcome_id', $id)
- // ->where('new_criteria.number_of_scales', $level)
- // ->whereNull('new_criteria.deleted_at')
- // ->select('new_criteria.id', 'new_criteria.name')
- // ->orderBy('new_criteria.name', 'asc')
- // ->get();
- $outcome_criterias = DB::table('criterion_objective_outcome')
- ->join('criteria', 'criteria.id', '=', 'criterion_objective_outcome.criterion_id')
- ->join('objectives', 'objectives.id', '=', 'criterion_objective_outcome.objective_id')
- ->where('criterion_objective_outcome.outcome_id', $id)
- ->where('criteria.number_of_scales', $level)
- ->whereNull('criteria.deleted_at')
- ->select('criteria.id', 'criteria.name')
- ->orderBy('criteria.name', 'asc')
- ->get();
- $outcome_criterias = $outcome_criterias;
-
- foreach ($outcome_criterias as $criteria_id) {
-
- $scales =
- DB::select(
- DB::raw("
- SELECT *
- FROM (
- SELECT criteria.id as criterion_id,
- ROW_NUMBER() OVER(PARTITION BY scales.id) rn,
- scales.position,
- scales.title, scales.description,
- criterion_objective_outcome.outcome_id,criterion_objective_outcome.objective_id,
- criterion_scale.scale_id
- FROM criteria,criterion_scale,scales, criterion_objective_outcome, objectives
- where criteria.id=criterion_scale.criterion_id
- and scales.id = criterion_scale.scale_id
- and criteria.id = criterion_objective_outcome.criterion_id
- and objectives.id = criterion_objective_outcome.objective_id
- and criterion_objective_outcome.outcome_id = $id
- and criteria.id = $criteria_id->id
- ORDER BY criteria.name ASC) a
- WHERE rn = 1
- ORDER BY `a`.`position` ASC
- ")
- );
- // insertar la informacion de los criterios con N niveles en el arreglo de arreglos
- $criteria_id->scales = $scales;
- // $i++;
- } //ends foreach criteria_id
- array_push($outcome->criteria, array($outcome_criterias, 'amount_of_levels' => $level));
- } //ends foreach level
-
- return array(
- 'outcome' => $outcome,
- );
- }
-
- public function managerAssessmentReports()
- {
- $outcomes = Outcome::select(array('id', 'name', 'expected_outcome'))->orderBy('name', 'ASC')->get();
-
- switch (Auth::user()->role) {
- case 1:
- $title = "Campus Assessment Reports";
- return View::make('local.managers.admins.assessment_reports', compact('title', 'outcomes'));
- break;
- case 2:
- $title = "School Assessment Reports";
- return View::make('local.managers.sCoords.assessment_reports', compact('title', 'outcomes'));
- break;
- case 3:
- $title = "Program Assessment Reports";
- $programs = Auth::user()->programs;
- return View::make('local.managers.pCoords.assessment_reports', compact('title', 'outcomes', 'programs'));
- break;
- default:
- App::abort('404');
- break;
- }
- }
-
- /**
- * Campus Assessment Reports
- */
- public function assessmentReport($outcome_id)
- {
- $outcome = Outcome::find($outcome_id);
-
- if (!$outcome)
- App::abort('404');
- $title = "Assessment Report: " . $outcome->name;
-
-
- $schools = School::has('courses')
- ->with(array('programs' => function ($query) use ($outcome_id) {
- $query
- ->has('courses')
- ->with(array('courses' => function ($query2) use ($outcome_id) {
- $query2
- ->has('activities')
- ->whereNotNull('outcomes_attempted')
- // ->where('outcomes_attempted', 'NOT LIKE', '%"'.$outcome_id.'":0%')
- ->whereIn('semester_id', Session::get('semesters_ids'))
- ->groupBy(array('code', 'number'));
- }));
- }))
- ->get();
-
- return View::make('local.managers.admins.assessment_report', compact('title', 'outcome', 'schools'));
- }
-
- // TODO: Change later
- public function newAssessmentReport($outcome_id)
- {
- $outcome = Outcome::find($outcome_id);
-
- if (!$outcome)
- App::abort('404');
- $title = "Assessment Report: " . $outcome->name;
-
- $schools = School::has('courses')
- ->with(array('programs' => function ($query) use ($outcome_id) {
- $query
- ->has('courses')
- ->with(array('courses' => function ($query2) use ($outcome_id) {
- $query2
- ->has('activities')
- ->whereNotNull('outcomes_attempted')
- // ->where('outcomes_attempted', 'NOT LIKE', '%"'.$outcome_id.'":0%')
- ->whereIn('semester_id', Session::get('semesters_ids'))
- ->groupBy(array('code', 'number'));
- }));
- }))
- ->get();
-
- return View::make('local.managers.admins.assessment_report', compact('title', 'outcome', 'schools'));
- }
-
- /**
- * School Assessment Reports
- */
- public function schoolAssessmentReport($outcome_id)
- {
- $outcome = Outcome::find($outcome_id);
-
- if (!$outcome)
- App::abort('404');
- $title = "Assessment Report: " . $outcome->name;
-
-
- $school = School::where('id', Auth::user()->school_id)
- ->has('courses')
- ->with(array('programs' => function ($query) {
- $query
- ->has('courses')
- ->with(array('courses' => function ($query2) {
- $query2
- ->has('activities')
- ->whereNotNull('outcomes_attempted')
- ->whereIn('semester_id', Session::get('semesters_ids'))
- ->groupBy(array('code', 'number'));
- }));
- }))
- ->first();
-
- return View::make('local.managers.sCoords.assessment_report', compact('title', 'outcome', 'school'));
- }
-
- /**
- * Program Assessment Reports
- */
- public function programAssessmentReport($outcome_id, $program_id)
- {
- $outcome = Outcome::find($outcome_id);
-
- if (!$outcome)
- App::abort('404');
- $title = "Assessment Report: " . $outcome->name;
-
-
- $program = Program::where('id', $program_id)
- ->has('courses')
- ->with(array('courses' => function ($query) {
- $query
- ->has('activities')
- ->whereNotNull('outcomes_attempted')
- ->whereIn('semester_id', Session::get('semesters_ids'))
- ->groupBy(array('code', 'number'));
- }))
- ->first();
-
- return View::make('local.managers.pCoords.assessment_report', compact('title', 'outcome', 'program'));
- }
-
-
- public function professorAssessmentReports()
- {
- $outcomes = Outcome::select(array('id', 'name', 'expected_outcome'))->orderBy('name', 'ASC')->get();
- $title = "My Courses' Assessment Reports";
-
- return View::make('local.professors.assessment_reports', compact('title', 'outcomes'));
- }
-
-
- // Report for a single professor with a single learning outcome
- public function professorAssessmentReport($outcome_id)
- {
- $outcome = Outcome::find($outcome_id);
-
- if (!$outcome)
- App::abort('404');
- $title = "My Courses' Assessment Report: " . $outcome->name;
-
-
- $courses = Course::where('user_id', Auth::user()->id)
- ->has('activities')
- ->whereNotNull('outcomes_attempted')
- ->whereIn('semester_id', Session::get('semesters_ids'))
- ->groupBy(array('code', 'number'))
- ->get();
-
- return View::make('local.professors.assessment_report', compact('title', 'outcome', 'courses'));
- }
- }
|