diff --git a/main/admin/calendar.lib.php b/main/admin/calendar.lib.php
index f170d1bc3c..c46ca78410 100644
--- a/main/admin/calendar.lib.php
+++ b/main/admin/calendar.lib.php
@@ -1475,15 +1475,11 @@ function show_add_form($id = '') {
-
diff --git a/main/inc/lib/auth.lib.php b/main/inc/lib/auth.lib.php
index 9f95afb5d0..e4bbac069f 100644
--- a/main/inc/lib/auth.lib.php
+++ b/main/inc/lib/auth.lib.php
@@ -1,5 +1,4 @@
0) {
- $sql = "SELECT DISTINCT docs.id, path
+ $sql = "SELECT DISTINCT docs.id, path
FROM $TABLE_ITEMPROPERTY AS last INNER JOIN $TABLE_DOCUMENT AS docs
ON (docs.id = last.ref AND last.tool = '" . TOOL_DOCUMENT . "' AND last.c_id = {$_course['real_id']} AND docs.c_id = {$_course['real_id']} )
- WHERE
+ WHERE
docs.filetype = 'folder' AND
last.to_group_id = ".$to_group_id." AND
docs.path NOT LIKE '%shared_folder%' AND
@@ -816,50 +816,50 @@ class DocumentManager {
$result = Database::fetch_array(Database::query("SELECT filetype FROM $TABLE_DOCUMENT WHERE c_id = $course_id AND id= $document_id"), 'ASSOC');
return $result['filetype'] == 'folder';
}
-
+
public static function delete_document_from_db($document_id, $course_info = array(), $session_id = 0, $remove_content_from_db = false) {
$TABLE_DOCUMENT = Database::get_course_table(TABLE_DOCUMENT);
$TABLE_ITEMPROPERTY = Database :: get_course_table(TABLE_ITEM_PROPERTY);
-
+
//Deleting from the DB
$user_id = api_get_user_id();
-
+
if (empty($course_info)) {
$course_info = api_get_course_info();
}
if (empty($session_id)) {
$session_id = api_get_session_id();
}
-
+
//Soft DB delete
api_item_property_update($course_info, TOOL_DOCUMENT, $document_id, 'delete', $user_id, null, null, null, null, $session_id);
self::delete_document_from_search_engine($course_info['code'], $document_id);
self::unset_document_as_template($document_id, $course_info['code'], $user_id);
-
+
//Hard DB delete
- if ($remove_content_from_db) {
+ if ($remove_content_from_db) {
$sql = "DELETE FROM $TABLE_ITEMPROPERTY WHERE c_id = {$course_info['real_id']} AND ref = ".$document_id." AND tool='".TOOL_DOCUMENT."'";
- Database::query($sql);
-
- $sql = "DELETE FROM ".$TABLE_DOCUMENT." WHERE c_id = {$course_info['real_id']} AND id = ".$document_id;
Database::query($sql);
-
+
+ $sql = "DELETE FROM ".$TABLE_DOCUMENT." WHERE c_id = {$course_info['real_id']} AND id = ".$document_id;
+ Database::query($sql);
+
self::delete_document_metadata($document_id);
}
}
-
+
public static function delete_document_metadata($document_id) {
//needed to deleted medadata
require_once api_get_path(SYS_CODE_PATH).'metadata/md_funcs.php';
require_once api_get_path(LIBRARY_PATH).'fileManage.lib.php';
$mdStore = new mdstore(true);
-
+
//delete metadata
$eid = 'Document'.'.'.$document_id;
$mdStore->mds_delete($eid);
- $mdStore->mds_delete_offspring($eid);
+ $mdStore->mds_delete_offspring($eid);
}
-
+
/**
* This deletes a document by changing visibility to 2, renaming it to filename_DELETED_#id
@@ -873,34 +873,34 @@ class DocumentManager {
*/
public static function delete_document($_course, $path, $base_work_dir) {
$TABLE_DOCUMENT = Database :: get_course_table(TABLE_DOCUMENT);
-
+
if (empty($path) || empty($base_work_dir)) {
return false;
}
-
+
$course_id = $_course['real_id'];
//first, delete the actual document...
$document_id = self :: get_document_id($_course, $path);
$document_exists_in_disk = file_exists($base_work_dir.$path);
-
+
$new_path = $path.'_DELETED_'.$document_id;
$current_session_id = api_get_session_id();
-
+
$file_deleted_from_db = false;
$file_deleted_from_disk = false;
$file_renamed_from_disk = false;
-
+
if ($document_id) {
- self::delete_document_from_db($document_id);
+ self::delete_document_from_db($document_id);
//checking
- //$file_exists_in_db = self::get_document_data_by_id($document_id, $_course['code']);
+ //$file_exists_in_db = self::get_document_data_by_id($document_id, $_course['code']);
$file_deleted_from_db = true;
}
-
+
if ($document_exists_in_disk) {
-
- if (api_get_setting('permanently_remove_deleted_files') == 'true') {
+
+ if (api_get_setting('permanently_remove_deleted_files') == 'true') {
//Deleted files are *really* deleted
$what_to_delete_sql = "SELECT id FROM ".$TABLE_DOCUMENT." WHERE c_id = $course_id AND path='".$path."' OR path LIKE BINARY '".$path."/%'";
//get all id's of documents that are deleted
@@ -915,24 +915,24 @@ class DocumentManager {
//delete documents, do it like this so metadata get's deleted too
//update_db_info('delete', $path);
//throw it away
- my_delete($base_work_dir.$path);
+ my_delete($base_work_dir.$path);
$file_deleted_from_disk = true;
}
} else {
//Set visibility to 2 and rename file/folder to xxx_DELETED_#id (soft delete)
-
+
if (is_file($base_work_dir.$path) || is_dir($base_work_dir.$path)) {
if (rename($base_work_dir.$path, $base_work_dir.$new_path)) {
-
+
$sql = "UPDATE $TABLE_DOCUMENT set path='".$new_path."' WHERE c_id = $course_id AND id='".$document_id."'";
Database::query($sql);
-
+
$sql = "SELECT id, path FROM $TABLE_DOCUMENT WHERE c_id = $course_id AND path LIKE BINARY '".$path."/%'";
$result = Database::query($sql);
if ($result && Database::num_rows($result) > 0) {
- while ($deleted_items = Database::fetch_array($result, 'ASSOC')) {
- self::delete_document_from_db($deleted_items['id']);
-
+ while ($deleted_items = Database::fetch_array($result, 'ASSOC')) {
+ self::delete_document_from_db($deleted_items['id']);
+
//Change path of subfolders and documents in database
$old_item_path = $deleted_items['path'];
$new_item_path = $new_path.substr($old_item_path, strlen($path));
@@ -946,22 +946,22 @@ class DocumentManager {
//Couldn't rename - file permissions problem?
error_log(__FILE__.' '.__LINE__.': Error renaming '.$base_work_dir.$path.' to '.$base_work_dir.$new_path.'. This is probably due to file permissions',0);
}
- }
- }
+ }
+ }
}
-
- //Checking inconsistency
- if ($file_deleted_from_db && $file_deleted_from_disk ||
+
+ //Checking inconsistency
+ if ($file_deleted_from_db && $file_deleted_from_disk ||
$file_deleted_from_db && $file_renamed_from_disk) {
return true;
} else {
//Something went wrong
-
+
//The file or directory isn't there anymore (on the filesystem)
// This means it has been removed externally. To prevent a
// blocking error from happening, we drop the related items from the
// item_property and the document table.
- error_log(__FILE__.' '.__LINE__.': System inconsistency detected. The file or directory '.$base_work_dir.$path.' seems to have been removed from the filesystem independently from the web platform. To restore consistency, the elements using the same path will be removed from the database',0);
+ error_log(__FILE__.' '.__LINE__.': System inconsistency detected. The file or directory '.$base_work_dir.$path.' seems to have been removed from the filesystem independently from the web platform. To restore consistency, the elements using the same path will be removed from the database',0);
return false;
}
}
@@ -1048,9 +1048,9 @@ class DocumentManager {
$row['url'] = api_get_path(WEB_CODE_PATH).'document/showinframes.php?cidReq='.$course_code.'&id='.$id;
$row['document_url'] = api_get_path(WEB_CODE_PATH).'document/document.php?cidReq='.$course_code.'&id='.$id;
$row['absolute_path'] = api_get_path(SYS_COURSE_PATH).$course_info['path'].'/document'.$row['path'];
-
+
$row['absolute_path_from_document'] = '/document'.$row['path'];
-
+
$pathinfo = pathinfo($row['path']);
$row['absolute_parent_path'] = api_get_path(SYS_COURSE_PATH).$course_info['path'].'/document'.$pathinfo['dirname'].'/';
@@ -1174,7 +1174,7 @@ class DocumentManager {
$condition = "AND id_session IN ('$session_id', '0') ";
// The " d.filetype='file' " let the user see a file even if the folder is hidden see #2198
- /*
+ /*
When using hotpotatoes files, a new html files are generated in the hotpotatoes folder
to display the test.
The genuine html file is copied to math4.htm(user_id).t.html
@@ -1182,7 +1182,7 @@ class DocumentManager {
To check the html file visibility, we don't have to check file math4.htm(user_id).t.html but file math4.htm
In this case, we have to remove (user_id).t.html to check the visibility of the file
For images, we just check the path of the image file.
-
+
Exemple of hotpotatoes folder :
A.jpg
maths4-consigne.jpg
@@ -1520,10 +1520,10 @@ class DocumentManager {
$dir_name='/certificates';
$post_dir_name=get_lang('CertificatesFiles');
$visibility_command = 'invisible';
-
+
if (!is_dir($base_work_dir_test)) {
- $created_dir = create_unexisting_directory($course_info, api_get_user_id(), api_get_session_id(), $to_group_id,$to_user_id,$base_work_dir,$dir_name,$post_dir_name);
- $update_id = self::get_document_id_of_directory_certificate();
+ $created_dir = create_unexisting_directory($course_info, api_get_user_id(), api_get_session_id(), $to_group_id,$to_user_id,$base_work_dir,$dir_name,$post_dir_name);
+ $update_id = self::get_document_id_of_directory_certificate();
api_item_property_update($course_info, TOOL_DOCUMENT, $update_id, $visibility_command, api_get_user_id());
}
}
@@ -1962,11 +1962,11 @@ class DocumentManager {
$destination_course_code = CourseManager::get_course_id_from_path ($destination_course_directory);
$destination_course_info = api_get_course_info($destination_course_code);
$dest_course_path = api_get_path(SYS_COURSE_PATH).$destination_course_directory.'/';
-
+
$user_id = api_get_user_id();
-
+
if (!empty($orig_source_html)) {
- foreach ($orig_source_html as $source) {
+ foreach ($orig_source_html as $source) {
// get information about source url
$real_orig_url = $source[0]; // url
@@ -1981,7 +1981,7 @@ class DocumentManager {
// Replace origin course code by destination course code from origin url query
$dest_url_query = '';
-
+
if (!empty($real_orig_query)) {
$dest_url_query = '?'.$real_orig_query;
if (strpos($dest_url_query,$origin_course_code) !== false) {
@@ -1990,9 +1990,9 @@ class DocumentManager {
}
if ($scope_url == 'local') {
- if ($type_url == 'abs' || $type_url == 'rel') {
+ if ($type_url == 'abs' || $type_url == 'rel') {
$document_file = strstr($real_orig_path, 'document');
-
+
if (strpos($real_orig_path,$document_file) !== false) {
$origin_filepath = $orig_course_path.$document_file;
$destination_filepath = $dest_course_path.$document_file;
@@ -2000,31 +2000,31 @@ class DocumentManager {
// copy origin file inside destination course
if (file_exists($origin_filepath)) {
$filepath_dir = dirname($destination_filepath);
-
+
if (!is_dir($filepath_dir)) {
$perm = api_get_permissions_for_new_directories();
- $result = @mkdir($filepath_dir, $perm, true);
+ $result = @mkdir($filepath_dir, $perm, true);
if ($result) {
- $filepath_to_add = str_replace(array($dest_course_path, 'document'), '', $filepath_dir);
-
+ $filepath_to_add = str_replace(array($dest_course_path, 'document'), '', $filepath_dir);
+
//Add to item properties to the new folder
$doc_id = add_document($destination_course_info, $filepath_to_add, 'folder', 0, basename($filepath_to_add));
api_item_property_update($destination_course_info, TOOL_DOCUMENT, $doc_id, 'FolderCreated', $user_id, null, null, null, null);
}
}
-
+
if (!file_exists($destination_filepath)) {
$result = @copy($origin_filepath, $destination_filepath);
- if ($result) {
-
+ if ($result) {
+
$filepath_to_add = str_replace(array($dest_course_path, 'document'), '', $destination_filepath);
$size = filesize($destination_filepath);
-
+
//Add to item properties to the file
$doc_id = add_document($destination_course_info, $filepath_to_add, 'file', $size, basename($filepath_to_add));
api_item_property_update($destination_course_info, TOOL_DOCUMENT, $doc_id, 'FolderCreated', $user_id, null, null, null, null);
}
-
+
}
}
@@ -2047,7 +2047,7 @@ class DocumentManager {
if (strpos($real_orig_url, '?') === 0) {
$dest_url = str_replace($origin_course_code, $destination_course_code, $real_orig_url);
$content_html = str_replace($real_orig_url, $dest_url, $content_html);
- }
+ }
} else {
if ($type_url == 'url') {
@@ -2246,29 +2246,29 @@ class DocumentManager {
if (isset($files['file'])) {
$upload_ok = process_uploaded_file($files['file'], $show_output);
-
+
if ($upload_ok) {
// File got on the server without problems, now process it
$new_path = handle_uploaded_document($course_info, $files['file'], $base_work_dir, $path, api_get_user_id(), api_get_group_id(), null, $unzip, $if_exists, $show_output);
-
+
if ($new_path) {
$docid = DocumentManager::get_document_id($course_info, $new_path);
if (!empty($docid)) {
$table_document = Database::get_course_table(TABLE_DOCUMENT);
$params = array();
-
+
if (!empty($title)) {
$params['title'] = get_document_title($title);
} else {
if (isset($if_exists) && $if_exists == 'rename') {
- $new_path = basename($new_path);
- $params['title'] = get_document_title($new_path);
+ $new_path = basename($new_path);
+ $params['title'] = get_document_title($new_path);
} else {
$params['title'] = get_document_title($files['file']['name']);
}
}
-
+
if (!empty($comment)) {
$params['comment'] = trim($comment);
}
@@ -2388,36 +2388,36 @@ class DocumentManager {
static function documents_total_space($course_id = null, $group_id = null, $session_id = null) {
$TABLE_ITEMPROPERTY = Database::get_course_table(TABLE_ITEM_PROPERTY);
$TABLE_DOCUMENT = Database::get_course_table(TABLE_DOCUMENT);
-
- if (isset($course_id)) {
+
+ if (isset($course_id)) {
$course_id = intval($course_id);
} else {
$course_id = api_get_course_int_id();
}
-
+
$group_condition = null;
-
- if (isset($group_id)) {
+
+ if (isset($group_id)) {
$group_id = intval($group_id);
- $group_condition = " AND props.to_group_id='".$group_id."' ";
+ $group_condition = " AND props.to_group_id='".$group_id."' ";
}
-
+
$session_condition = null;
-
- if (isset($session_id)) {
+
+ if (isset($session_id)) {
$session_id = intval($session_id);
- $session_condition = " AND props.id_session='".$session_id."' ";
- }
-
+ $session_condition = " AND props.id_session='".$session_id."' ";
+ }
+
$sql = "SELECT SUM(size) FROM ".$TABLE_ITEMPROPERTY." AS props, ".$TABLE_DOCUMENT." AS docs
WHERE props.c_id = $course_id AND
docs.c_id = $course_id AND
docs.id = props.ref AND
props.tool = '".TOOL_DOCUMENT."' AND
props.visibility <> 2
- $group_condition
+ $group_condition
$session_condition
- ";
+ ";
$result = Database::query($sql);
if ($result && Database::num_rows($result) != 0) {
@@ -2485,7 +2485,7 @@ class DocumentManager {
$course_quota_m = round($course_quota / 1000000);
$already_consumed_space_m = round($already_consumed_space / 1000000, 2);
$percentage = $already_consumed_space / $course_quota * 100;
- $percentage = round($percentage, 1);
+ $percentage = round($percentage, 1);
$message = get_lang('YouAreCurrentlyUsingXOfYourX');
$message = sprintf($message, $already_consumed_space_m, $percentage.'%',$course_quota_m.' ');
echo Display::div($message, array('id'=>'document_quota'));
@@ -2513,33 +2513,33 @@ class DocumentManager {
}
return true;
}
-
+
/**
- *
+ *
* @param array paremeters: count, url, extension
* @return string
*/
-
+
static function generate_jplayer_jquery($params = array()) {
- $js_path = api_get_path(WEB_LIBRARY_PATH).'javascript/';
-
- $jplayer_definition = ' $("#jquery_jplayer_' . $params['count'] . '").jPlayer({
- ready: function() {
- $(this).jPlayer("setMedia", {
- ' . $params['extension'] . ' : "' . $params['url'] . '"
+ $js_path = api_get_path(WEB_LIBRARY_PATH).'javascript/';
+
+ $jplayer_definition = ' $("#jquery_jplayer_' . $params['count'] . '").jPlayer({
+ ready: function() {
+ $(this).jPlayer("setMedia", {
+ ' . $params['extension'] . ' : "' . $params['url'] . '"
});
},
play: function() { // To avoid both jPlayers playing together.
$(this).jPlayer("pauseOthers");
- },
+ },
//errorAlerts: true,
//warningAlerts: true,
swfPath: "' . $js_path . 'jquery-jplayer",
//supplied: "m4a, oga, mp3, ogg, wav",
supplied: "' . $params['extension'] . '",
wmode: "window",
- solution: "flash, html", // Do not change this setting
- cssSelectorAncestor: "#jp_container_' . $params['count'] . '",
+ solution: "flash, html", // Do not change this setting
+ cssSelectorAncestor: "#jp_container_' . $params['count'] . '",
}); ' . "\n\n";
return $jplayer_definition;
}
@@ -2552,7 +2552,7 @@ class DocumentManager {
*/
static function generate_media_preview($i, $type = 'simple') {
$i = intval($i);
-
+
$extra_controls = $progress = '';
if ($type == 'advanced') {
$extra_controls = ' stop
@@ -2564,7 +2564,7 @@ class DocumentManager {
';
}
-
+
//Shows only the play button
$html = '
@@ -2574,8 +2574,8 @@ class DocumentManager {
play
pause
'.$extra_controls.'
-
- '.$progress.'
+
+ '.$progress.'
';
@@ -2682,30 +2682,30 @@ class DocumentManager {
//$condition_session = " AND (id_session = '$session_id' OR (id_session = '0' AND insert_date <= (SELECT creation_date FROM $tbl_course WHERE code = '".$course_info['code']."' )))";
$condition_session = " AND (id_session = '$session_id' OR id_session = '0' )";
-
+
$add_folder_filter = null;
if (!empty($filter_by_folder)) {
$add_folder_filter = " AND docs.path LIKE '".Database::escape_string($filter_by_folder)."%'";
}
-
+
$sql_doc = "SELECT last.visibility, docs.*
FROM $tbl_item_prop AS last, $tbl_doc AS docs
- WHERE docs.id = last.ref AND
- docs.path LIKE '".$path.$added_slash."%' AND
- docs.path NOT LIKE '%_DELETED_%' AND
+ WHERE docs.id = last.ref AND
+ docs.path LIKE '".$path.$added_slash."%' AND
+ docs.path NOT LIKE '%_DELETED_%' AND
last.tool = '".TOOL_DOCUMENT."' $condition_session AND
- last.visibility = '1' AND
- docs.c_id = {$course_info['real_id']} AND
- last.c_id = {$course_info['real_id']}
+ last.visibility = '1' AND
+ docs.c_id = {$course_info['real_id']} AND
+ last.c_id = {$course_info['real_id']}
$add_folder_filter
ORDER BY docs.title ASC";
-
+
$res_doc = Database::query($sql_doc);
$resources = Database::store_result($res_doc, 'ASSOC');
$resources_sorted = array();
$return = '';
-
+
if ($lp_id) {
$return .= '';
$return .= Display::return_icon('new_doc.gif', '', array(), ICON_SIZE_SMALL);
@@ -2913,7 +2913,7 @@ class DocumentManager {
$url = $web_code_path.'document/document.php?cidReq='.$course_info['code'].'&id_session='.$session_id.'&id='.$key;
if (!empty($overwrite_url)) {
$url = $overwrite_url.'&document_id='.$key;
- }
+ }
}
$img = $img_path.$icon;
if (!file_exists($img_sys_path.$icon)) {
@@ -3229,5 +3229,7 @@ class DocumentManager {
);
return $system_folders;
}
+
+
}
//end class DocumentManager
diff --git a/main/inc/lib/formvalidator/Element/html_editor.php b/main/inc/lib/formvalidator/Element/html_editor.php
index d7dde836be..7ca8014f27 100644
--- a/main/inc/lib/formvalidator/Element/html_editor.php
+++ b/main/inc/lib/formvalidator/Element/html_editor.php
@@ -3,7 +3,6 @@
/* For licensing terms, see /license.txt */
require_once 'HTML/QuickForm/textarea.php';
-require_once api_get_path(LIBRARY_PATH) . 'fckeditor/fckeditor.php';
/**
* A html editor field to use with QuickForm
@@ -106,7 +105,7 @@ class HTML_QuickForm_html_editor extends HTML_QuickForm_textarea {
if (!FCKeditor :: IsCompatible()) {
return parent::toHTML();
}
- $this->fck_editor->Value = $this->getValue();
+ $this->fck_editor->Value = $this->getValue();
$result = $this->fck_editor->CreateHtml();
//Add a link to open the allowed html tags window
//$result .= '
fullPage ? '1' : '0')."','MyWindow','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=500,height=600,left=200,top=20'".'); return false;">'.get_lang('AllowedHTMLTags').' ';
diff --git a/main/inc/lib/grade_model.lib.php b/main/inc/lib/grade_model.lib.php
index 6eff50674d..a4a464767f 100644
--- a/main/inc/lib/grade_model.lib.php
+++ b/main/inc/lib/grade_model.lib.php
@@ -12,121 +12,119 @@
* @package chamilo.library
*/
-require_once 'fckeditor/fckeditor.php';
-
class GradeModel extends Model {
-
+
var $table;
var $columns = array('id', 'name', 'description');
-
+
public function __construct() {
$this->table = Database::get_main_table(TABLE_GRADE_MODEL);
- }
-
+ }
+
public function get_all($where_conditions = array()) {
return Database::select('*',$this->table, array('where'=>$where_conditions,'order' =>'name ASC'));
}
-
- public function get_count() {
+
+ public function get_count() {
$row = Database::select('count(*) as count', $this->table, array(),'first');
return $row['count'];
- }
-
+ }
+
/**
* Displays the title + grid
*/
public function display() {
// action links
echo '
';
- echo Display::grid_html('grade_model');
+ echo '
'.Display::return_icon('back.png',get_lang('Back'),'','32').' ';
+ echo '
'.Display::return_icon('add.png',get_lang('Add'),'','32').' ';
+ echo '
';
+ echo Display::grid_html('grade_model');
}
-
+
/**
* Returns a Form validator Obj
* @todo the form should be auto generated
* @param string url
* @param string action add, edit
- * @return obj form validator obj
+ * @return obj form validator obj
*/
public function return_form($url, $action) {
-
+
$oFCKeditor = new FCKeditor('description') ;
$oFCKeditor->ToolbarSet = 'grade_model';
$oFCKeditor->Width = '100%';
$oFCKeditor->Height = '200';
$oFCKeditor->Value = '';
$oFCKeditor->CreateHtml();
-
+
$form = new FormValidator('grades', 'post', $url);
-
+
// Settting the form elements
$header = get_lang('Add');
-
+
if ($action == 'edit') {
$header = get_lang('Modify');
}
-
+
$form->addElement('header', $header);
$id = isset($_GET['id']) ? intval($_GET['id']) : '';
$form->addElement('hidden', 'id', $id);
-
+
$form->addElement('text', 'name', get_lang('Name'), array('size' => '70'));
- $form->add_html_editor('description', get_lang('Description'), false, false, array('ToolbarSet' => 'careers','Width' => '100%', 'Height' => '250'));
+ $form->add_html_editor('description', get_lang('Description'), false, false, array('ToolbarSet' => 'careers','Width' => '100%', 'Height' => '250'));
$form->addElement('label', get_lang('Components'));
-
+
//Get components
$nr_items = 2;
$max = 10;
-
+
// Setting the defaults
-
- $defaults = $this->get($id);
-
+
+ $defaults = $this->get($id);
+
$components = $this->get_components($defaults['id']);
-
+
if ($action == 'edit') {
- if (!empty($components)) {
+ if (!empty($components)) {
$nr_items = count($components) -1;
}
- }
-
+ }
+
$form->addElement('hidden', 'maxvalue', '100');
$form->addElement('hidden', 'minvalue', '0');
-
+
$renderer = & $form->defaultRenderer();
-
+
$component_array = array();
-
+
for ($i = 0; $i <= $max; $i++) {
$counter = $i;
- $form->addElement('text', 'components['.$i.'][percentage]', null, array('class' => 'span1'));
+ $form->addElement('text', 'components['.$i.'][percentage]', null, array('class' => 'span1'));
$form->addElement('text', 'components['.$i.'][acronym]', null, array('class' => 'span1', 'placeholder' => get_lang('Acronym')));
- $form->addElement('text', 'components['.$i.'][title]', null, array('class' => 'span2', 'placeholder' => get_lang('Title')));
+ $form->addElement('text', 'components['.$i.'][title]', null, array('class' => 'span2', 'placeholder' => get_lang('Title')));
$form->addElement('text', 'components['.$i.'][prefix]', null, array('class'=> 'span1', 'placeholder' => get_lang('Prefix')));
-
+
$options = array(0=>0, 1 => 1, 2 => 2, 3=>3, 4=> 4, 5=> 5);
$form->addElement('select', 'components['.$i.'][count_elements]', null, $options);
-
- $options = array(0=>0, 1 => 1, 2 => 2, 3=>3, 4=> 4, 5=> 5);
+
+ $options = array(0=>0, 1 => 1, 2 => 2, 3=>3, 4=> 4, 5=> 5);
$form->addElement('select', 'components['.$i.'][exclusions]', null, $options);
-
-
-
+
+
+
$form->addElement('hidden', 'components['.$i.'][id]');
-
+
$template_percentage =
- '
+ '
{label}
-
+
{element}
{error} % = ';
-
+
$template_acronym = '
-
+
{element} {label}
{error} ';
$template_title =
@@ -136,35 +134,35 @@ class GradeModel extends Model {
-
+
';
-
+
$renderer->setElementTemplate($template_acronym, 'components['.$i.'][title]');
$renderer->setElementTemplate($template_percentage , 'components['.$i.'][percentage]');
$renderer->setElementTemplate($template_acronym , 'components['.$i.'][acronym]');
-
+
$renderer->setElementTemplate($template_acronym , 'components['.$i.'][prefix]');
$renderer->setElementTemplate($template_title , 'components['.$i.'][exclusions]');
$renderer->setElementTemplate($template_acronym , 'components['.$i.'][count_elements]');
-
+
if ($i == 0) {
$form->addRule('components['.$i.'][percentage]', get_lang('ThisFieldIsRequired'), 'required');
$form->addRule('components['.$i.'][title]', get_lang('ThisFieldIsRequired'), 'required');
- $form->addRule('components['.$i.'][acronym]', get_lang('ThisFieldIsRequired'), 'required');
+ $form->addRule('components['.$i.'][acronym]', get_lang('ThisFieldIsRequired'), 'required');
}
$form->addRule('components['.$i.'][percentage]', get_lang('OnlyNumbers'), 'numeric');
-
+
$form->addRule(array('components['.$i.'][percentage]', 'maxvalue'), get_lang('Over100'), 'compare', '<=');
- $form->addRule(array('components['.$i.'][percentage]', 'minvalue'), get_lang('UnderMin'), 'compare', '>=');
-
+ $form->addRule(array('components['.$i.'][percentage]', 'minvalue'), get_lang('UnderMin'), 'compare', '>=');
+
$component_array[] = 'components['.$i.'][percentage]';
}
-
+
//New rule added in the formvalidator compare_fields that filters a group of fields in order to compare with the wanted value
- $form->addRule($component_array, get_lang('AllMustWeight100'), 'compare_fields', '==@100');
-
+ $form->addRule($component_array, get_lang('AllMustWeight100'), 'compare_fields', '==@100');
+
$form->addElement('advanced_settings', get_lang('AllMustWeight100'));
-
+
if ($action == 'edit') {
$form->addElement('style_submit_button', 'submit', get_lang('Modify'), 'class="save"');
} else {
@@ -179,43 +177,43 @@ class GradeModel extends Model {
}
$counter++;
}
- }
-
+ }
+
$form->setDefaults($defaults);
-
+
// Setting the rules
- $form->addRule('name', get_lang('ThisFieldIsRequired'), 'required');
- return $form;
+ $form->addRule('name', get_lang('ThisFieldIsRequired'), 'required');
+ return $form;
}
-
- public function get_components($id) {
+
+ public function get_components($id) {
$obj = new GradeModelComponents();
if (!empty($id)) {
- return $obj->get_all(array('where'=> array('grade_model_id = ?' => $id)));
- }
+ return $obj->get_all(array('where'=> array('grade_model_id = ?' => $id)));
+ }
return null;
}
-
- public function save($params, $show_query = false) {
+
+ public function save($params, $show_query = false) {
$id = parent::save($params, $show_query);
- if (!empty($id)) {
- foreach ($params['components'] as $component) {
+ if (!empty($id)) {
+ foreach ($params['components'] as $component) {
if (!empty($component['title']) && !empty($component['percentage']) && !empty($component['acronym'])) {
$obj = new GradeModelComponents();
$component['grade_model_id'] = $id;
$obj->save($component);
}
- }
+ }
}
- //event_system(LOG_CAREER_CREATE, LOG_CAREER_ID, $id, api_get_utc_datetime(), api_get_user_id());
+ //event_system(LOG_CAREER_CREATE, LOG_CAREER_ID, $id, api_get_utc_datetime(), api_get_user_id());
return $id;
}
-
+
public function update($params) {
parent::update($params);
-
+
if (!empty($params['id'])) {
- foreach ($params['components'] as $component) {
+ foreach ($params['components'] as $component) {
$obj = new GradeModelComponents();
$component['grade_model_id'] = $params['id'];
if (empty($component['title']) && empty($component['percentage']) && empty($component['acronym'])) {
@@ -224,41 +222,41 @@ class GradeModel extends Model {
$obj->update($component);
}
}
- }
+ }
//$params['components']
}
-
+
public function delete($id) {
parent::delete($id);
//event_system(LOG_CAREER_DELETE, LOG_CAREER_ID, $id, api_get_utc_datetime(), api_get_user_id());
}
-
+
public function fill_grade_model_select_in_form(&$form, $name = 'gradebook_model_id', $default_value = null) {
if (api_get_setting('gradebook_enable_grade_model') == 'false') {
return false;
- }
-
+ }
+
if (api_get_setting('teachers_can_change_grade_model_settings') == 'true' || api_is_platform_admin()) {
- $grade_models = $this->get_all();
- $grade_model_options = array('-1' => get_lang('None'));
+ $grade_models = $this->get_all();
+ $grade_model_options = array('-1' => get_lang('None'));
if (!empty($grade_models)) {
foreach ($grade_models as $item) {
$grade_model_options[$item['id']] = $item['name'];
- }
+ }
}
$form->addElement('select', $name, get_lang('GradeModel'), $grade_model_options);
$default_platform_setting = api_get_setting('gradebook_default_grade_model_id');
-
+
$default = -1;
-
+
if ($default_platform_setting == -1) {
if (!empty($default_value)) {
$default = $default_value;
- }
+ }
} else {
$default = $default_platform_setting;
}
-
+
if (!empty($default) && $default != '-1') {
$form->setDefaults(array($name => $default));
}
@@ -269,12 +267,12 @@ class GradeModel extends Model {
class GradeModelComponents extends Model {
var $table;
var $columns = array('id', 'title', 'percentage', 'acronym', 'grade_model_id', 'prefix', 'exclusions', 'count_elements');
-
+
public function __construct() {
$this->table = Database::get_main_table(TABLE_GRADE_MODEL_COMPONENTS);
- }
- public function save($params, $show_query = false) {
- $id = parent::save($params, $show_query);
+ }
+ public function save($params, $show_query = false) {
+ $id = parent::save($params, $show_query);
return $id;
}
}
\ No newline at end of file
diff --git a/main/inc/lib/main_api.lib.php b/main/inc/lib/main_api.lib.php
index 877ab07fa8..70312287f7 100644
--- a/main/inc/lib/main_api.lib.php
+++ b/main/inc/lib/main_api.lib.php
@@ -357,6 +357,8 @@ define('MESSAGE_STATUS_INVITATION_PENDING', '5');
define('MESSAGE_STATUS_INVITATION_ACCEPTED', '6');
define('MESSAGE_STATUS_INVITATION_DENIED', '7');
+define('SESSION_LINK_TARGET', '_self');
+
/**
* Inclusion of internationalization libraries
diff --git a/main/inc/lib/tracking.lib.php b/main/inc/lib/tracking.lib.php
index 141a4eb71c..90334973ee 100644
--- a/main/inc/lib/tracking.lib.php
+++ b/main/inc/lib/tracking.lib.php
@@ -10,10 +10,8 @@
/**
* Code
*/
-define('SESSION_LINK_TARGET', '_self');
require_once api_get_path(SYS_CODE_PATH).'exercice/exercise.lib.php';
-require_once api_get_path(SYS_CODE_PATH).'newscorm/learnpathList.class.php';
/**
* Class