Нема описа

TemplatesController.php 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696
  1. <?php
  2. class TemplatesController extends \BaseController
  3. {
  4. /**
  5. * List all templates, grouped by program
  6. */
  7. public function profShow(Template $template)
  8. {
  9. return $this->show($template);
  10. }
  11. public function ProfIndex()
  12. {
  13. $title = 'Rubric List';
  14. $role = Auth::user()->role;
  15. $program_id = DB::table("program_user")
  16. ->where('user_id', Auth::user()->id)
  17. ->lists('program_id')[0];
  18. $school_id = DB::table('programs')
  19. ->where('id', $program_id)
  20. ->lists('school_id')[0];
  21. $templates = Template::orderBy('name')
  22. ->whereNull("school_id")
  23. ->orWhere(function ($query) use (&$school_id) {
  24. $query->where('school_id', $school_id)
  25. ->whereNull('program_id');
  26. })
  27. ->orWhere(function ($query) use (&$program_id, &$school_id) {
  28. $query->where('school_id', $school_id)
  29. ->where('program_id', $program_id);
  30. })
  31. ->get();
  32. return View::make('local.managers.shared.rubric_list', compact('title', 'global_templates', 'schools', 'templates', 'role'));
  33. }
  34. public function index()
  35. {
  36. $title = 'Rubric List';
  37. $global_templates = Template::whereNull('school_id')->whereNull('program_id')->get();
  38. $schools = School::with('programs.templates')
  39. ->orderBy('name')
  40. ->get();
  41. $role = Auth::user()->role;
  42. switch ($role) {
  43. case 1:
  44. $templates = Template::orderBy('name')->get();
  45. break;
  46. case 2:
  47. $templates = Template::orderBy('name')
  48. ->whereNull("school_id")
  49. ->orWhere('school_id', Auth::user()->school_id)
  50. ->get();
  51. break;
  52. case 3:
  53. case 4:
  54. $program_ids = DB::table("program_user")
  55. ->where('user_id', Auth::user()->id)
  56. ->lists('program_id');
  57. $school_ids = DB::table('programs')
  58. ->whereIn('id', $program_ids)
  59. ->lists('school_id');
  60. $templates = Template::orderBy('name')
  61. ->whereNull("school_id")
  62. ->orWhere(function ($query) use (&$school_ids) {
  63. $query->whereIn('school_id', $school_ids)
  64. ->whereNull('program_id');
  65. })
  66. ->orWhere(function ($query) use (&$program_ids, &$school_ids) {
  67. $query->where('school_id', $school_ids)
  68. ->where('program_id', $program_ids);
  69. });
  70. Log::info($templates->toSql());
  71. $templates = $templates->get();
  72. break;
  73. }
  74. Log::info($templates);
  75. //$templates = Template::orderBy('name')->get();
  76. return View::make('local.managers.shared.rubric_list', compact('title', 'global_templates', 'schools', 'templates', 'role'));
  77. }
  78. /*public function schoolCoordinatorIndex()
  79. {
  80. $title = 'Rubric List';
  81. $global_templates = Template::whereNull('school_id')->whereNull('program_id')->get();
  82. $schools = School::with('programs.templates')
  83. ->orderBy('name')
  84. ->get();
  85. $templates = Template::orderBy('name')->get();
  86. return View::make('local.managers.admins.rubric_list', compact('title', 'global_templates', 'schools', 'templates'));
  87. }*/
  88. public function show(Template $template)
  89. {
  90. $title = $template->name;
  91. $template->titles = DB::table('titles')
  92. ->join('template_title', 'template_title.title_id', '=', "titles.id")
  93. ->where('template_id', $template->id)
  94. ->orderBy('position', 'ASC')
  95. ->lists('text');
  96. $template->criteria = DB::table('criteria')
  97. ->join('template_criterion', 'template_criterion.criterion_id', '=', 'criteria.id')
  98. ->where('template_id', $template->id)
  99. ->select('criteria.*', 'criteria.id as criterion_id', 'template_criterion.id as template_criterion_id')
  100. ->orderBy('position')
  101. ->get();
  102. foreach ($template->criteria as $criterion) {
  103. $criterion->scales = DB::table('criterion_scale')
  104. ->join('scales', 'scales.id', '=', 'criterion_scale.scale_id')
  105. ->where('criterion_id', $criterion->criterion_id)
  106. ->orderBy('position')
  107. ->lists('description');
  108. $criterion->outcomes = DB::table('criterion_objective_outcome as cobo')
  109. ->join('outcomes', 'outcomes.id', '=', 'cobo.outcome_id')
  110. ->where('cobo.criterion_id', $criterion->criterion_id)
  111. ->select('outcomes.*')
  112. ->distinct()
  113. ->get();
  114. }
  115. return View::make('local.managers.admins.view_template', compact('template', 'title'));
  116. }
  117. public function onLoadFetch()
  118. {
  119. $json_to_send = [];
  120. $template_id = Input::get('id');
  121. $json_to_send["criteria"] = DB::table("criteria")->join('template_criterion', 'template_criterion.criterion_id', '=', 'criteria.id')
  122. ->where("template_criterion.template_id", '=', $template_id)
  123. ->get();
  124. Log::info($json_to_send["criteria"]);
  125. foreach ($json_to_send['criteria'] as $criteria) {
  126. $json_to_send['scales'][$criteria->criterion_id] = DB::table("scales")
  127. ->join('criterion_scale', 'criterion_scale.scale_id', '=', 'scales.id')
  128. ->where("criterion_scale.criterion_id", '=', $criteria->criterion_id)->orderBy('position', 'ASC')->get();
  129. }
  130. return json_encode($json_to_send);
  131. }
  132. /**
  133. * Show the form for creating a new rubric
  134. *
  135. * @return Response
  136. */
  137. public function newTemplate()
  138. {
  139. $title = "Rubric Builder";
  140. $templates = Template::orderBy('name', 'ASC')->get();
  141. $outcomes = Outcome::where("deactivation_date", '=', null)->orderBy('name', 'ASC')->get();
  142. $criteria = Criterion::orderBy('name', 'ASC')->get();
  143. $schools = School::orderBy('name', 'ASC')->get();
  144. $role = Auth::user()->role;
  145. $templates = NULL;
  146. $programs = NULL;
  147. // Returns templates depending on the type of user
  148. if ($role == 1) {
  149. $templates = Template::orderBy('name', 'ASC')->get();
  150. $programs = Program::orderBy('name', 'ASC')->get();
  151. } elseif ($role == 2) {
  152. $templates = Template::where('school_id', '=', Auth::user()->school->id)->orWhere('school_id', '=', NULL)->orderBy('name', 'ASC')->get();
  153. $programs = Auth::user()->school->programs;
  154. } elseif ($role == 3) {
  155. $templates = Template::where('school_id', '=', Auth::user()->programs[0]->school->id)->orWhere('school_id', '=', NULL)->orderBy('name', 'ASC')->get();
  156. $programs = Auth::user()->programs()->get();
  157. }
  158. return View::make('local.managers.shared.rubrics', compact('title', 'templates', 'outcomes', 'criteria', 'schools', 'programs'));
  159. }
  160. public function newTemplateProf()
  161. {
  162. return $this->newTemplate_new();
  163. }
  164. public function newTemplate_new()
  165. {
  166. $title = "Rubric Builder";
  167. $templates = Template::orderBy('name', 'ASC')->get();
  168. $outcomes = Outcome::where("deactivation_date", '=', null)->orderBy('name', 'ASC')->get();
  169. $schools = School::orderBy('name', 'ASC')->get();
  170. $role = Auth::user()->role;
  171. $templates = NULL;
  172. $programs = NULL;
  173. // Returns templates depending on the type of user
  174. if ($role == 1) {
  175. $templates = Template::orderBy('name', 'ASC')->get();
  176. $programs = Program::orderBy('name', 'ASC')->get();
  177. $criteria = Criterion::orderBy('name', 'ASC')->get();
  178. $school_id_user = NULL;
  179. } else {
  180. if ($role == 2) {
  181. $programs = Auth::user()->school->programs;
  182. $school_id_user = Auth::user()->school_id;
  183. }
  184. if ($role == 3) {
  185. $programs = Auth::user()->programs()->get();
  186. $school_id_user = Auth::user()->programs[0]->school->id;
  187. }
  188. if ($role == 4) {
  189. $programs = Auth::user()->programs()->get();
  190. $school_id_user = Auth::user()->programs[0]->school->id;
  191. }
  192. Log::info(json_encode($school_id_user));
  193. $program_ids = array();
  194. foreach ($programs as $program) {
  195. $program_ids[] = $program->id;
  196. }
  197. $criteria = Criterion::whereHas(
  198. 'programs',
  199. function ($q) use ($program_ids) {
  200. $q->whereIn('program_id', $program_ids);
  201. }
  202. )
  203. ->whereHas(
  204. 'getObjectivesAttribute',
  205. function ($q) {
  206. $q->where('objective_id', '!=', 0);
  207. }
  208. )
  209. ->orderBy('name', 'ASC')->get();
  210. }
  211. // Log::info("aqui".(count($criteria)));
  212. // Log::info(json_encode(count($criteria)));
  213. $templates = Template::where('school_id', '=', $school_id_user)->orWhere('school_id', '=', NULL)
  214. ->orderBy('name', 'ASC')->get();
  215. $criteria_ids = array();
  216. foreach ($criteria as $criterion) {
  217. $criteria_ids[] = $criterion->id;
  218. }
  219. $templates_fuera = Template::whereHas('criteria', function ($q) use ($criteria_ids) {
  220. $q->whereNotIn('criterion_id', $criteria_ids);
  221. })
  222. ->orderBy('name', 'ASC')->get();
  223. $templates_fuera_ids = array();
  224. foreach ($templates_fuera as $tf) {
  225. $templates_fuera_ids[] = $tf->id;
  226. }
  227. // Log::info(json_encode($templates_fuera_ids));
  228. // exit();
  229. $templates_dentro = Template::whereNotIn('id', $templates_fuera_ids)
  230. ->orderBy('name', 'ASC')->get();
  231. /*$templates_dentro = Template::join('template_criterion', 'template_criterion.template_id', '=', 'templates.id')
  232. ->join('criterion_objective_outcome as cobo', 'cobo.criterion_id', '=', 'template_criterion.criterion_id')
  233. ->where('objective_id', '<>', '0')
  234. ->where(function ($query) use ($school_id_user) {
  235. $query->where('school_id', $school_id_user)
  236. ->orWhere('school_id', '=', NULL);
  237. })
  238. // ->orWhere('school_id', '=', NULL)
  239. ->orderBy('name', 'ASC')
  240. ->groupBy('templates.id')
  241. ->select("templates.*")
  242. ->get();*/
  243. // if(!isset($templates_dentro))$templates_dentro=
  244. // var_dump(json_encode($templates_dentro));
  245. // }
  246. $templates_fuera = array();
  247. return View::make('local.managers.shared.rubrics_new', compact('title', 'templates_dentro', 'templates_fuera', 'outcomes', 'criteria', 'schools', 'programs', 'criteria_ids'));
  248. }
  249. public function fetchObjectivesForTemplate()
  250. {
  251. $criteria_ids = Input::get("allCriteria");
  252. $criteria = [];
  253. //Acho im sorry pero no tengo idea porque sale un error que haría eso más eficiente.
  254. foreach ($criteria_ids as $crit_id) {
  255. $crit = Criterion::where('id', $crit_id)->first();
  256. if (!isset($crit)) {
  257. return "NO pa";
  258. }
  259. $crit->all_objectives = DB::table("objectives")->join("criterion_objective_outcome", 'objectives.id', '=', 'criterion_objective_outcome.objective_id')
  260. ->where('criterion_id', $crit->id)
  261. ->select('objectives.*')
  262. ->groupBy('objectives.id')
  263. ->get();
  264. $criteria[] = $crit;
  265. }
  266. return $criteria;
  267. }
  268. /**
  269. * Save a new rubric
  270. *
  271. * @return Response
  272. */
  273. public function create()
  274. {
  275. DB::beginTransaction();
  276. $template = new Template;
  277. $template->name = Input::get('name');
  278. $template->is_visible = Input::get('is_visible');
  279. $template->expected_percentage = Input::get('expected_percentage');
  280. $template->expected_points = Input::get('expected_points');
  281. // If user can set the school (that is, if school_id is not undefined)
  282. // set the school id or set to null
  283. if (is_numeric(Input::get('school_id'))) {
  284. if (Input::get('school_id') != 0)
  285. $template->school_id = Input::get('school_id');
  286. elseif (Input::get('school_id') == 0)
  287. $template->school_id = NULL;
  288. }
  289. // If user can set the program (that is, if program_id is not undefined)
  290. // set the program id or set to null
  291. if (is_numeric(Input::get('program_id'))) {
  292. if (Input::get('program_id') != 0)
  293. $template->program_id = Input::get('program_id');
  294. elseif (Input::get('program_id') == 0)
  295. $template->program_id = NULL;
  296. }
  297. // If the user is any coordinator, set the school id
  298. // If the user is a program coordinator, also set program id
  299. switch (Auth::user()->role) {
  300. case 2:
  301. $template->school_id = Auth::user()->school->id;
  302. break;
  303. //TODO esto yo no lo hice
  304. case 3:
  305. $template->school_id = Auth::user()->programs[0]->school->id;
  306. //Comenté esto porque siempre va a estar el program_id
  307. //TODO
  308. if ($template->program_id == NULL)
  309. $template->program_id = Auth::user()->programs[0]->id;
  310. break;
  311. }
  312. $criteria = Input::get('criteria');
  313. $max_score = Input::get('max_score');
  314. $titles = Input::get('titles');
  315. $template->num_scales = count($titles);
  316. $template->max_score = $max_score;
  317. if ($template->save()) {
  318. $templateId = $template->id;
  319. foreach ($criteria as $index => $criterion_id) {
  320. if (!(DB::insert("insert into template_criterion (`template_id`,`criterion_id`, `position`) values ({$templateId},{$criterion_id}, '{$index}')"))) {
  321. Session::flash('status', 'danger');
  322. Session::flash('message', 'Rubric could not be created.');
  323. DB::rollback();
  324. return;
  325. }
  326. }
  327. foreach ($titles as $index => $text) {
  328. $query = DB::table('titles')
  329. ->where('text', $text)->first();
  330. if ($query) {
  331. $result = DB::insert("insert into `template_title` (`template_id`, `title_id`, `position`) values ({$templateId}, {$query->id}, {$index})");
  332. if (!$result) {
  333. Session::flash('status', 'danger');
  334. Session::flash('message', 'Rubric could not be created.');
  335. DB::rollback();
  336. return;
  337. }
  338. } else {
  339. $result1 = DB::insert("insert into `titles` (`text`) values ('{$text}')");
  340. if (!$result1) {
  341. Session::flash('status', 'danger');
  342. Session::flash('message', 'Rubric could not be created.');
  343. DB::rollback();
  344. return;
  345. }
  346. $query = DB::table('titles')
  347. ->where('text', $text)->first();
  348. $result = DB::insert("insert into `template_title` (`template_id`, `title_id`, `position`) values ({$templateId}, {$query->id}, {$index})");
  349. if (!$result) {
  350. Session::flash('status', 'danger');
  351. Session::flash('message', 'Rubric could not be created.');
  352. DB::rollback();
  353. return;
  354. }
  355. }
  356. }
  357. Session::flash('status', 'success');
  358. Session::flash('message', 'Rubric created. You can now select it from the list.');
  359. DB::commit();
  360. return;
  361. } else {
  362. Session::flash('status', 'danger');
  363. Session::flash('message', 'Rubric could not be created.');
  364. DB::rollback();
  365. return;
  366. }
  367. }
  368. /**
  369. * Return a specific template
  370. *
  371. * @return Template
  372. */
  373. public function fetch()
  374. {
  375. $template_info = [];
  376. $template_info['template'] = Template::find(Input::get('id'));
  377. $template_info['criterion'] = DB::table('criteria')
  378. ->join('template_criterion', 'template_criterion.criterion_id', '=', 'criteria.id')
  379. ->where("template_criterion.template_id", '=', Input::get('id'))
  380. ->get();
  381. Log::info(json_encode($template_info['criterion']));
  382. // Log::info(($temp_crit->program_ids));
  383. foreach ($template_info['criterion'] as $temp_crit) {
  384. $temp_crit->scales = DB::table('scales')
  385. ->join('criterion_scale', 'criterion_scale.scale_id', '=', 'scales.id')
  386. ->where('criterion_scale.criterion_id', '=', $temp_crit->criterion_id)
  387. ->orderBy('position', 'ASC')
  388. ->get();
  389. $temp_crit->program_ids = json_encode(DB::table('program_criterion_objective_outcome')
  390. ->join('criterion_objective_outcome', 'criterion_objective_outcome.id', '=', 'program_criterion_objective_outcome.cri_obj_out_id')
  391. ->where('criterion_objective_outcome.criterion_id', $temp_crit->id)
  392. ->select('program_criterion_objective_outcome.program_id')
  393. ->distinct()
  394. ->lists('program_criterion_objective_outcome.program_id'));
  395. Log::info("ee" . json_encode($temp_crit->program_ids));
  396. $temp_crit->objectives = DB::table('criterion_objective_outcome')
  397. ->join('objectives', 'objectives.id', '=', 'criterion_objective_outcome.objective_id')
  398. ->where('criterion_id', $temp_crit->id)
  399. ->select('objectives.*')
  400. ->distinct()
  401. ->lists('text');
  402. $outcomeID = DB::table('criterion_objective_outcome')->where('criterion_id', '=', $temp_crit->criterion_id)
  403. ->lists('outcome_id');
  404. $outcomes = DB::table('outcomes')->whereIn('id', $outcomeID)->get();
  405. $outcomeStr = '';
  406. foreach ($outcomes as $key => $outcome) {
  407. $outcomeStr .= $outcome->name . ', ';
  408. }
  409. $outcomeStr = rtrim($outcomeStr, ',');
  410. $temp_crit->outcomes = $outcomeStr;
  411. }
  412. Log::info("ee2" . json_encode($template_info));
  413. $template_info['titles'] = DB::table('titles')
  414. ->join('template_title', 'template_title.title_id', '=', 'titles.id')
  415. ->where('template_id', Input::get('id'))
  416. ->orderBy('position')
  417. ->get();
  418. // Log::info(json_encode($template_info));
  419. return json_encode($template_info);
  420. }
  421. /**
  422. * Update the specified resource in storage.
  423. *
  424. * @return Response
  425. */
  426. public function update()
  427. {
  428. DB::beginTransaction();
  429. $template = Template::find(Input::get('id'));
  430. Log::info(Input::all());
  431. $template->name = Input::get('name');
  432. $template->is_visible = Input::get('is_visible');
  433. $template->expected_percentage = Input::get('expected_percentage');
  434. $template->expected_points = Input::get('expected_points');
  435. // If user can set the school (that is, if school_id is not undefined)
  436. // set the school id or set to null
  437. if (is_numeric(Input::get('school_id'))) {
  438. if (Input::get('school_id') != 0)
  439. $template->school_id = Input::get('school_id');
  440. elseif (Input::get('school_id') == 0)
  441. $template->school_id = NULL;
  442. }
  443. // If user can set the program (that is, if program_id is not undefined)
  444. // set the program id or set to null
  445. if (is_numeric(Input::get('program_id'))) {
  446. if (Input::get('program_id') != 0)
  447. $template->program_id = Input::get('program_id');
  448. elseif (Input::get('program_id') == 0)
  449. $template->program_id = NULL;
  450. }
  451. switch (Auth::user()->role) {
  452. case 2:
  453. $template->school_id = Auth::user()->school->id;
  454. break;
  455. case 3:
  456. $template->school_id = Auth::user()->programs[0]->school->id;
  457. if ($template->program_id == NULL)
  458. $template->program_id = Auth::user()->programs[0]->id;
  459. break;
  460. }
  461. $criteria = Input::get('criteria');
  462. $max_score = Input::get('max_score');
  463. $titles = Input::get('titles');
  464. $template->num_scales = count($titles);
  465. $template->max_score = $max_score;
  466. //$division = $max_score / count($scales[0]);
  467. if ($template->save()) {
  468. $templateId = $template->id;
  469. DB::delete("delete from template_criterion where template_id ={$template->id}");
  470. foreach ($criteria as $index => $criterion_id) {
  471. if (!DB::insert("insert into template_criterion (`template_id`,`criterion_id`, `position`) values ({$templateId},{$criterion_id}, {$index})")) {
  472. Session::flash('status', 'danger');
  473. Session::flash('message', 'Rubric could not be created.');
  474. DB::rollback();
  475. return;
  476. }
  477. }
  478. DB::delete("delete from template_title where template_id = {$template->id}");
  479. foreach ($titles as $index => $text) {
  480. $query = DB::table('titles')
  481. ->where('text', $text)->first();
  482. if ($query) {
  483. $result = DB::insert("insert into `template_title` (`template_id`, `title_id`, `position`) values ({$templateId}, {$query->id}, {$index})");
  484. if (!$result) {
  485. Session::flash('status', 'danger');
  486. Session::flash('message', 'Rubric could not be created.');
  487. DB::rollback();
  488. return;
  489. }
  490. } else {
  491. $result1 = DB::insert("insert into `titles` (`text`) values ('{$text}')");
  492. if (!$result1) {
  493. Session::flash('status', 'danger');
  494. Session::flash('message', 'Rubric could not be created.');
  495. DB::rollback();
  496. return;
  497. }
  498. $query = DB::table('titles')
  499. ->where('text', $text)->first();
  500. $result = DB::insert("insert into `template_title` (`template_id`, `title_id`, `position`) values ({$templateId}, {$query->id}, {$index})");
  501. if (!$result) {
  502. Session::flash('status', 'danger');
  503. Session::flash('message', 'Rubric could not be created.');
  504. DB::rollback();
  505. return;
  506. }
  507. }
  508. }
  509. Session::flash('status', 'success');
  510. Session::flash('message', 'Rubric updated (' . date('m/d/y, h:i:s a') . ').');
  511. DB::commit();
  512. } else {
  513. Session::flash('status', 'danger');
  514. Session::flash('message', 'Rubric could not be updated (' . date('m/d/y, h:i:s a') . ').');
  515. DB::commit();
  516. }
  517. }
  518. /**
  519. * Remove the specified resource from storage.
  520. *
  521. * @return Response
  522. */
  523. public function destroy()
  524. {
  525. $template = Template::find(Input::get('id'));
  526. if ($template->delete()) {
  527. Session::flash('status', 'success');
  528. Session::flash('message', 'Rubric deleted.');
  529. } else {
  530. Session::flash('status', 'danger');
  531. Session::flash('message', 'Rubric could not be deleted.');
  532. }
  533. return;
  534. }
  535. public function printview($id)
  536. {
  537. try {
  538. $template = Template::find($id);
  539. $template->titles = DB::table('titles')
  540. ->join('template_title', 'template_title.title_id', '=', 'titles.id')
  541. ->where("template_id", $template->id)
  542. ->orderBy('position', 'ASC')
  543. ->lists('text');
  544. $template_criterion = DB::table('template_criterion')
  545. ->join('criteria', 'criteria.id', '=', 'template_criterion.criterion_id')
  546. ->where('template_id', $template->id)
  547. ->orderBy('position', 'ASC')
  548. ->get();
  549. foreach ($template_criterion as $single_crit) {
  550. $single_crit->scales = DB::table('criterion_scale')
  551. ->join('scales', 'criterion_scale.scale_id', '=', 'scales.id')
  552. ->where('criterion_id', $single_crit->id)
  553. ->orderBy('position')
  554. ->lists('description');
  555. $single_crit->outcomes = DB::table('outcomes')
  556. ->join('criterion_objective_outcome', 'criterion_objective_outcome.outcome_id', '=', 'outcomes.id')
  557. ->where('criterion_id', $single_crit->id)
  558. ->select('name')
  559. ->distinct()
  560. ->lists('name');
  561. }
  562. $title = $template->name;
  563. if ($template->school_id != NULL)
  564. $school = $template->school->name;
  565. else
  566. $school = 'All Schools';
  567. if ($template->program_id != NULL)
  568. $program = $template->program->name;
  569. else
  570. $program = 'All Programs';
  571. return View::make('local.managers.shared.print_rubric', compact('title', 'template_criterion', 'template', 'school', 'program'));
  572. } catch (Exception $e) {
  573. Session::flash('status', 'danger');
  574. Session::flash('message', $e->getMessage());
  575. return Redirect::back();
  576. }
  577. }
  578. }