parent
f315d411e0
commit
4534259a75
@ -0,0 +1,247 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* This file is part of course block plugin for dashboard, |
||||||
|
* it should be required inside dashboard controller for showing it into dashboard interface from plattform |
||||||
|
* @package chamilo.dashboard |
||||||
|
* @author Marco Sousa |
||||||
|
*/ |
||||||
|
|
||||||
|
/** |
||||||
|
* required files for getting data |
||||||
|
*/ |
||||||
|
require_once api_get_path(LIBRARY_PATH).'course.lib.php'; |
||||||
|
require_once api_get_path(LIBRARY_PATH).'usermanager.lib.php'; |
||||||
|
require_once api_get_path(LIBRARY_PATH).'tracking.lib.php'; |
||||||
|
require_once api_get_path(LIBRARY_PATH).'thematic.lib.php'; |
||||||
|
require_once api_get_path(LIBRARY_PATH).'attendance.lib.php'; |
||||||
|
require_once api_get_path(SYS_CODE_PATH).'gradebook/lib/be.inc.php'; |
||||||
|
|
||||||
|
/** |
||||||
|
* This class is used like controller for this course block plugin, |
||||||
|
* the class name must be registered inside path.info file (e.g: controller = "BlockDiario"), so dashboard controller will be instantiate it |
||||||
|
* @package chamilo.dashboard |
||||||
|
*/ |
||||||
|
class BlockDaily extends Block { |
||||||
|
|
||||||
|
private $user_id; |
||||||
|
private $courses; |
||||||
|
private $path; |
||||||
|
private $permission = array(DRH); |
||||||
|
|
||||||
|
/** |
||||||
|
* Constructor |
||||||
|
*/ |
||||||
|
public function __construct ($user_id) { |
||||||
|
$this->user_id = $user_id; |
||||||
|
$this->path = 'block_course'; |
||||||
|
if ($this->is_block_visible_for_user($user_id)) { |
||||||
|
/*if (api_is_platform_admin()) { |
||||||
|
$this->courses = CourseManager::get_real_course_list(); |
||||||
|
} else {*/ |
||||||
|
$this->courses = CourseManager::get_courses_followed_by_drh($user_id); |
||||||
|
//} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* This method check if a user is allowed to see the block inside dashboard interface |
||||||
|
* @param int User id |
||||||
|
* @return bool Is block visible for user |
||||||
|
*/ |
||||||
|
public function is_block_visible_for_user($user_id) { |
||||||
|
$user_info = api_get_user_info($user_id); |
||||||
|
$user_status = $user_info['status']; |
||||||
|
$is_block_visible_for_user = false; |
||||||
|
if (UserManager::is_admin($user_id) || in_array($user_status, $this->permission)) { |
||||||
|
$is_block_visible_for_user = true; |
||||||
|
} |
||||||
|
return $is_block_visible_for_user; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* This method return content html containing information about courses and its position for showing it inside dashboard interface |
||||||
|
* it's important to use the name 'get_block' for beeing used from dashboard controller |
||||||
|
* @return array column and content html |
||||||
|
*/ |
||||||
|
public function get_block() { |
||||||
|
|
||||||
|
global $charset; |
||||||
|
|
||||||
|
$column = 2; |
||||||
|
$data = array(); |
||||||
|
$content = ''; |
||||||
|
$data_table = ''; |
||||||
|
$content = $this->get_content_html(); |
||||||
|
$html = ' |
||||||
|
<li class="widget color-green" id="intro"> |
||||||
|
<div class="widget-head"> |
||||||
|
<h3>'.get_lang('DailyElectronic').'</h3> |
||||||
|
<div class="widget-actions"><a onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang('ConfirmYourChoice'),ENT_QUOTES,$charset)).'\')) return false;" href="index.php?action=disable_block&path='.$this->path.'">'.Display::return_icon('close.gif',get_lang('Close')).'</a></div> |
||||||
|
</div> |
||||||
|
<div class="widget-content"> |
||||||
|
'.$content.' |
||||||
|
</div> |
||||||
|
</li> |
||||||
|
'; |
||||||
|
$data['column'] = $column; |
||||||
|
$data['content_html'] = $html; |
||||||
|
|
||||||
|
return $data; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* This method return a content html, it's used inside get_block method for showing it inside dashboard interface |
||||||
|
* @return string content html |
||||||
|
*/ |
||||||
|
public function get_content_html() { |
||||||
|
|
||||||
|
$course_data = $this->get_course_information_data(); |
||||||
|
$content = '<div style="margin:10px;">'; |
||||||
|
$content .= '<h3><font color="#000">'.get_lang('YourCourseList').'</font></h3>'; |
||||||
|
if (!empty($course_data)) { |
||||||
|
$data_table = '<table class="data_table" width:"95%">'; |
||||||
|
$data_table .= '<tr> |
||||||
|
<th>'.get_lang('CourseTitle').'</th> |
||||||
|
<th width="20%">'.get_lang('NbStudents').'</th> |
||||||
|
<th width="20%">'.get_lang('Evaluation').'</th> |
||||||
|
<th width="20%">'.get_lang('ToolAttendance').'</th> |
||||||
|
</tr>'; |
||||||
|
$i = 1; |
||||||
|
foreach ($course_data as $course) { |
||||||
|
if ($i%2 == 0) { |
||||||
|
$class_tr = 'row_odd'; |
||||||
|
} else { |
||||||
|
$class_tr = 'row_even'; |
||||||
|
} |
||||||
|
$data_table .= '<tr class="'.$class_tr.'">'; |
||||||
|
if (!isset($course[3])) { |
||||||
|
$course[3] = 'Não se aplica'; |
||||||
|
} |
||||||
|
foreach ($course as $cell) { |
||||||
|
$data_table .= '<td align="right">'.$cell.'</td>'; |
||||||
|
} |
||||||
|
$data_table .= '</tr>'; |
||||||
|
$i++; |
||||||
|
} |
||||||
|
$data_table .= '</table>'; |
||||||
|
} else { |
||||||
|
$data_table .= get_lang('ThereIsNoInformationAboutYourCourses'); |
||||||
|
} |
||||||
|
$content .= $data_table; |
||||||
|
if (!empty($course_data)) { |
||||||
|
$content .= '<div style="text-align:right;margin-top:10px;"><a href="'.api_get_path(WEB_CODE_PATH).'mySpace/course.php">'.get_lang('SeeMore').'</a></div>'; |
||||||
|
} |
||||||
|
$content .= '</div>'; |
||||||
|
|
||||||
|
return $content; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Get number of courses |
||||||
|
* @return int |
||||||
|
*/ |
||||||
|
function get_number_of_courses() { |
||||||
|
return count($this->courses); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Get course information data |
||||||
|
* @return array |
||||||
|
*/ |
||||||
|
function get_course_information_data() { |
||||||
|
$tbl_course = Database::get_main_table(TABLE_MAIN_COURSE); |
||||||
|
$tbl_course_user = Database::get_main_table(TABLE_MAIN_COURSE_USER); |
||||||
|
|
||||||
|
$a_course_students = array(); |
||||||
|
$course_data = array(); |
||||||
|
$courses = $this->courses; |
||||||
|
|
||||||
|
foreach ($courses as $row_course) { |
||||||
|
$notas = null; |
||||||
|
$course_code = $row_course['code']; |
||||||
|
|
||||||
|
// attendance |
||||||
|
$table_course = Database::get_course_table_from_code($course_code); |
||||||
|
|
||||||
|
$sql = "SELECT id, name, attendance_qualify_max FROM ".$table_course."attendance WHERE active = 1 AND session_id = 0"; |
||||||
|
$rs = Database::query($sql); |
||||||
|
$attendance = array(); |
||||||
|
$attendances = array(); |
||||||
|
|
||||||
|
$param_gradebook = ''; |
||||||
|
if (isset($_SESSION['gradebook'])) { |
||||||
|
$param_gradebook = '&gradebook='.$_SESSION['gradebook']; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
while ($row = Database::fetch_array($rs)) { |
||||||
|
$attendance['done'] = $row['attendance_qualify_max']; |
||||||
|
$attendance['id'] = $row['id']; |
||||||
|
//$attendance['name'] = $row['name']; |
||||||
|
$attendance['course_code'] = $course_code; |
||||||
|
|
||||||
|
if($attendance['done'] != '0') |
||||||
|
$attendances[] = '<a href="'.api_get_path(WEB_PATH).'main/attendance/index.php?cidReq='.$attendance['course_code'].'&action=attendance_sheet_print&attendance_id='.$attendance['id'].$param_gradebook.'">'.Display::return_icon('printmgr.gif',get_lang('Print')).'</a>'; |
||||||
|
else |
||||||
|
$attendances[] = "Indisponível"; |
||||||
|
} |
||||||
|
|
||||||
|
// quantidade de alunos |
||||||
|
|
||||||
|
$sql = "SELECT user_id FROM $tbl_course_user as course_rel_user WHERE course_rel_user.status=".STUDENT." AND course_rel_user.course_code='$course_code'"; |
||||||
|
$rs = Database::query($sql); |
||||||
|
$users = array(); |
||||||
|
while ($row = Database::fetch_array($rs)) { |
||||||
|
$users[] = $row['user_id']; |
||||||
|
} |
||||||
|
if (count($users) > 0) { |
||||||
|
$nb_students_in_course = count($users); |
||||||
|
} |
||||||
|
|
||||||
|
if (!empty($tematic_advance)) { |
||||||
|
$tematic_advance_progress = '<a title="'.get_lang('GoToThematicAdvance').'" href="'.api_get_path(WEB_CODE_PATH).'attendance/index.php?cidReq='.$course_code.'&action=attendance_sheet_print&attendance_id=">'.$tematic_advance.'%</a>'; |
||||||
|
} else { |
||||||
|
$tematic_advance_progress = '0%'; |
||||||
|
} |
||||||
|
|
||||||
|
// notas |
||||||
|
|
||||||
|
$tbl_grade_categories = Database :: get_main_table(TABLE_MAIN_GRADEBOOK_CATEGORY); |
||||||
|
$sql = "SELECT id from " . $tbl_grade_categories ." WHERE course_code ='".$course_code."'"; |
||||||
|
$rs = Database::query($sql); |
||||||
|
$categoria = null; |
||||||
|
while ($row = Database::fetch_array($rs)) { |
||||||
|
$categoria = $row['id']; |
||||||
|
} |
||||||
|
|
||||||
|
if (!empty ($categoria)) { |
||||||
|
$cat = Category::load($categoria); |
||||||
|
$eval = $cat[0]->get_evaluations(); |
||||||
|
|
||||||
|
if(count($eval) > 0){ |
||||||
|
foreach ($eval as $avaliacao){ |
||||||
|
|
||||||
|
$notas = $notas . ' <a href="'.api_get_path(WEB_PATH).'main/gradebook/gradebook_view_result.php?export=pdf&cat_code='.$cat[0]->get_id().'&official_code='.$cat[0]->get_course_code().'&selecteval='.$avaliacao->get_id().$param_gradebook.'">'.$avaliacao->get_name().'</a>'; |
||||||
|
} |
||||||
|
} |
||||||
|
else { |
||||||
|
$notas = "Indisponível"; |
||||||
|
} |
||||||
|
} |
||||||
|
else{ |
||||||
|
$notas = "Indisponível"; |
||||||
|
} |
||||||
|
|
||||||
|
$table_row = array(); |
||||||
|
$table_row[] = $row_course['title']; |
||||||
|
$table_row[] = $nb_students_in_course; |
||||||
|
$table_row[] = $notas; |
||||||
|
$table_row[] = $attendances[0]; |
||||||
|
$course_data[] = $table_row; |
||||||
|
} |
||||||
|
return $course_data; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
?> |
||||||
@ -0,0 +1,6 @@ |
|||||||
|
name = "Diário Eletrônico" |
||||||
|
controller = "BlockDaily" |
||||||
|
description = "Acesso ao diário eletrônico" |
||||||
|
package = Dashboard |
||||||
|
version = 1.0 |
||||||
|
author = Marco Antonio Firmino de Sousa |
||||||
@ -0,0 +1,78 @@ |
|||||||
|
/* Colors */ |
||||||
|
.color-yellow {background:#f2bc00;} |
||||||
|
.color-red {background:#dd0000;} |
||||||
|
.color-blue {background:#148ea4;} |
||||||
|
.color-white {background:#dfdfdf;} |
||||||
|
.color-orange {background:#f66e00;} |
||||||
|
.color-green {background:#8dc100;} |
||||||
|
.color-yellow h3, |
||||||
|
.color-white h3, |
||||||
|
.color-green h3 |
||||||
|
{color:#000;} |
||||||
|
.color-red h3, |
||||||
|
.color-blue h3, |
||||||
|
.color-orange h3 |
||||||
|
{color:#FFF;} |
||||||
|
/* End Colors */ |
||||||
|
|
||||||
|
//#columns #column1 .widget { margin: 30px 35px 0 25px; } |
||||||
|
//#columns #column3 .widget { margin: 30px 25px 0 35px; } |
||||||
|
|
||||||
|
.widget { |
||||||
|
margin: 30px 20px 0 20px; |
||||||
|
padding: 2px; |
||||||
|
-moz-border-radius: 4px; |
||||||
|
-webkit-border-radius: 4px; |
||||||
|
} |
||||||
|
.widget .widget-head { |
||||||
|
color: #000; |
||||||
|
overflow: hidden; |
||||||
|
width: 100%; |
||||||
|
height: 30px; |
||||||
|
line-height: 30px; |
||||||
|
} |
||||||
|
.widget .widget-head h3 { |
||||||
|
padding: 0 5px; |
||||||
|
float: left; |
||||||
|
} |
||||||
|
.widget .widget-content { |
||||||
|
background: #FFF url(img/widget-content-bg.png) repeat-x; |
||||||
|
padding: 0 5px; |
||||||
|
color: #000; |
||||||
|
-moz-border-radius-bottomleft: 2px; |
||||||
|
-moz-border-radius-bottomright: 2px; |
||||||
|
-webkit-border-bottom-left-radius: 2px; |
||||||
|
-webkit-border-bottom-right-radius: 2px; |
||||||
|
line-height: 1.2em; |
||||||
|
overflow: hidden; |
||||||
|
} |
||||||
|
.widget .widget-content p { |
||||||
|
padding: 0.8em 0; |
||||||
|
border-bottom: 1px solid #666; |
||||||
|
} |
||||||
|
.widget .widget-content pre { |
||||||
|
padding: 0.5em 5px; |
||||||
|
color: #EEE; |
||||||
|
font-size: 12px; |
||||||
|
} |
||||||
|
.widget .widget-content ul { |
||||||
|
padding: 5px 0 5px 20px; |
||||||
|
list-style: disc; |
||||||
|
} |
||||||
|
.widget .widget-content ul li {padding: 3px 0;} |
||||||
|
.widget .widget-content ul.images { |
||||||
|
padding: 7px 0 0 0; |
||||||
|
list-style: none; |
||||||
|
height: 1%; |
||||||
|
} |
||||||
|
.widget .widget-content ul.images li { |
||||||
|
display: inline; |
||||||
|
float: left; |
||||||
|
} |
||||||
|
.widget .widget-content ul.images img { |
||||||
|
display: inline; |
||||||
|
float: left; |
||||||
|
margin: 0 0 7px 7px; |
||||||
|
} |
||||||
|
|
||||||
|
.widget-actions {text-align:right;margin-right:5px;margin-top:5px;} |
||||||
@ -0,0 +1,8 @@ |
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
||||||
|
<head> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<br /> |
||||||
|
</body> |
||||||
|
</html> |
||||||
@ -0,0 +1,8 @@ |
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
||||||
|
<head> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<br /> |
||||||
|
</body> |
||||||
|
</html> |
||||||
Loading…
Reference in new issue