Move course copy classes

pull/2487/head
jmontoyaa 9 years ago
parent 4d9e96c841
commit dbfe8396ae
  1. 309
      main/coursecopy/classes/DummyCourseCreator.class.php
  2. 16
      main/coursecopy/copy_course.php
  3. 23
      main/coursecopy/copy_course_session.php
  4. 8
      main/coursecopy/copy_course_session_selected.php
  5. 12
      main/coursecopy/create_backup.php
  6. 11
      main/coursecopy/import_backup.php
  7. 11
      main/coursecopy/recycle_course.php
  8. 37
      main/inc/lib/api.lib.php
  9. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Course.php
  10. 11
      src/Chamilo/CourseBundle/Component/CourseCopy/CourseArchiver.php
  11. 34
      src/Chamilo/CourseBundle/Component/CourseCopy/CourseBuilder.php
  12. 2
      src/Chamilo/CourseBundle/Component/CourseCopy/CourseRecycler.php
  13. 25
      src/Chamilo/CourseBundle/Component/CourseCopy/CourseRestorer.php
  14. 2
      src/Chamilo/CourseBundle/Component/CourseCopy/CourseSelectForm.php
  15. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Announcement.php
  16. 6
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Attendance.php
  17. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/CalendarEvent.php
  18. 148
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/CourseCopyLearnpath.php
  19. 86
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/CourseCopyTestcategory.php
  20. 5
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/CourseDescription.php
  21. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/CourseSession.php
  22. 7
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Document.php
  23. 298
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/DummyCourseCreator.php
  24. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Forum.php
  25. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/ForumCategory.php
  26. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/ForumPost.php
  27. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/ForumTopic.php
  28. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Glossary.php
  29. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/GradeBookBackup.php
  30. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Link.php
  31. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/LinkCategory.php
  32. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Quiz.php
  33. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/QuizQuestion.php
  34. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/QuizQuestionOption.php
  35. 28
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Resource.php
  36. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/ScormDocument.php
  37. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Survey.php
  38. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/SurveyInvitation.php
  39. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/SurveyQuestion.php
  40. 7
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Thematic.php
  41. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/ToolIntro.php
  42. 134
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Wiki.php
  43. 4
      src/Chamilo/CourseBundle/Component/CourseCopy/Resources/Work.php

@ -1,309 +0,0 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Course.class.php';
require_once 'Document.class.php';
require_once 'Event.class.php';
require_once 'Link.class.php';
require_once 'LinkCategory.class.php';
require_once 'ForumCategory.class.php';
require_once 'Forum.class.php';
require_once 'ForumTopic.class.php';
require_once 'ForumPost.class.php';
require_once 'CourseDescription.class.php';
require_once 'CourseCopyLearnpath.class.php';
require_once 'CourseRestorer.class.php';
/**
* Dummy course creator
* @package chamilo.backup
*/
class DummyCourseCreator
{
/**
* The dummy course
*/
public $course;
/**
*
*/
public $default_property = array();
/**
* Create the dummy course
*/
public function create_dummy_course($course_code)
{
$this->default_property['insert_user_id'] = '1';
$this->default_property['insert_date'] = date('Y-m-d H:i:s');
$this->default_property['lastedit_date'] = date('Y-m-d H:i:s');
$this->default_property['lastedit_user_id'] = '1';
$this->default_property['to_group_id'] = '0';
$this->default_property['to_user_id'] = null;
$this->default_property['visibility'] = '1';
$this->default_property['start_visible'] = null;
$this->default_property['end_visible'] = null;
$course = api_get_course_info($course_code);
$this->course = new Course();
$tmp_path = api_get_path(SYS_COURSE_PATH).$course['directory'].'/document/tmp_'.uniqid('');
@mkdir($tmp_path, api_get_permissions_for_new_directories(), true);
$this->course->backup_path = $tmp_path;
$this->create_dummy_links();
$this->create_dummy_events();
$this->create_dummy_forums();
$this->create_dummy_announcements();
$this->create_dummy_documents();
$this->create_dummy_learnpaths();
$cr = new CourseRestorer($this->course);
$cr->set_file_option(FILE_OVERWRITE);
$cr->restore($course_code);
rmdirr($tmp_path);
}
/**
* Create dummy documents
*/
public function create_dummy_documents()
{
$course = api_get_course_info();
$course_doc_path = $this->course->backup_path.'/document/';
$number_of_documents = rand(10, 30);
$extensions = array ('html', 'doc');
$directories = array();
$property = $this->default_property;
$property['lastedit_type'] = 'DocumentAdded';
$property['tool'] = TOOL_DOCUMENT;
$doc_id = 0;
for ($doc_id = 1; $doc_id < $number_of_documents; $doc_id ++)
{
$path = '';
$doc_type = rand(0, count($extensions) - 1);
$extension = $extensions[$doc_type];
$filename = $this->get_dummy_content('title').'_'.$doc_id.'.'.$extension;
$content = $this->get_dummy_content('text');
$dirs = rand(0, 3);
for ($i = 0; $i < $dirs; $i ++)
{
$path .= 'directory/';
$directories[$path] = 1;
}
$dir_to_make = $course_doc_path.$path;
if (!is_dir($dir_to_make))
{
@mkdir($dir_to_make, api_get_permissions_for_new_directories(), true);
}
$file = $course_doc_path.$path.$filename;
$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
$size = filesize($file);
$document = new Document($doc_id, '/'.$path.$filename,$this->get_dummy_content('description'),$this->get_dummy_content('title'), 'file', $size);
$document->item_properties[] = $property;
$this->course->add_resource($document);
}
foreach($directories as $path => $flag)
{
$path = substr($path,0,strlen($path)-1);
$document = new Document($doc_id++,'/'.$path, $this->get_dummy_content('description'),$this->get_dummy_content('title'),'folder',0);
$property['lastedit_type'] = 'FolderCreated';
$document->item_properties[] = $property;
$this->course->add_resource($document);
}
}
/**
* Create dummy announcements
*/
function create_dummy_announcements()
{
$property = $this->default_property;
$property['lastedit_type'] = 'AnnouncementAdded';
$property['tool'] = TOOL_ANNOUNCEMENT;
$number_of_announcements = rand(10, 30);
for ($i = 0; $i < $number_of_announcements; $i ++)
{
$time = mktime(rand(1, 24), rand(1, 60), 0, rand(1, 12), rand(1, 28), intval(date('Y')));
$date = date('Y-m-d', $time);
$announcement = new Announcement($i,$this->get_dummy_content('title'),$this->get_dummy_content('text'), $date,0);
$announcement->item_properties[] = $property;
$this->course->add_resource($announcement);
}
}
/**
* Create dummy events
*/
function create_dummy_events()
{
$number_of_events = rand(10, 30);
$property = $this->default_property;
$property['lastedit_type'] = 'AgendaAdded';
$property['tool'] = TOOL_CALENDAR_EVENT;
for ($i = 0; $i < $number_of_events; $i ++)
{
$hour = rand(1,24);
$minute = rand(1,60);
$second = rand(1,60);
$day = rand(1,28);
$month = rand(1,12);
$year = intval(date('Y'));
$time = mktime($hour,$minute,$second,$month,$day,$year);
$start_date = date('Y-m-d H:m:s', $time);
$hour = rand($hour,24);
$minute = rand($minute,60);
$second = rand($second,60);
$day = rand($day,28);
$month = rand($month,12);
$year = intval(date('Y'));
$time = mktime($hour,$minute,$second,$month,$day,$year);
$end_date = date('Y-m-d H:m:s', $time);
$event = new CalendarEvent(
$i,
$this->get_dummy_content('title'),
$this->get_dummy_content('text'),
$start_date,
$end_date
);
$event->item_properties[] = $property;
$this->course->add_resource($event);
}
}
/**
* Create dummy links
*/
function create_dummy_links()
{
// create categorys
$number_of_categories = rand(5, 10);
for ($i = 0; $i < $number_of_categories; $i ++)
{
$linkcat = new LinkCategory($i, $this->get_dummy_content('title'), $this->get_dummy_content('description'),$i);
$this->course->add_resource($linkcat);
}
// create links
$number_of_links = rand(5, 50);
$on_homepage = rand(0,20) == 0 ? 1 : 0;
$property = $this->default_property;
$property['lastedit_type'] = 'LinkAdded';
$property['tool'] = TOOL_LINK;
for ($i = 0; $i < $number_of_links; $i ++)
{
$link = new Link($i, $this->get_dummy_content('title'), 'http://www.google.com/search?q='.$this->get_dummy_content('title'), $this->get_dummy_content('description'), rand(0, $number_of_categories -1),$on_homepage);
$link->item_properties[] = $property;
$this->course->add_resource($link);
}
}
/**
* Create dummy forums
*/
function create_dummy_forums()
{
$number_of_categories = rand(2, 6);
$number_of_forums = rand(5, 50);
$number_of_topics = rand(30, 100);
$number_of_posts = rand(100, 1000);
$last_forum_post = array ();
$last_topic_post = array ();
// create categorys
$order = 1;
for ($i = 1; $i <= $number_of_categories; $i ++)
{
$forumcat = new ForumCategory($i, $this->get_dummy_content('title'), $this->get_dummy_content('description'), $order, 0, 0);
$this->course->add_resource($forumcat);
$order++;
}
// create posts
for ($post_id = 1; $post_id <= $number_of_posts; $post_id ++)
{
$topic_id = rand(1, $number_of_topics);
$last_topic_post[$topic_id] = $post_id;
$post = new ForumPost($post_id, $this->get_dummy_content('title'), $this->get_dummy_content('text'), date('Y-m-d H:i:s'), 1, 'Portal Administrator', 0, 0, $topic_id, 0, 1);
$this->course->add_resource($post);
}
// create topics
for ($topic_id = 1; $topic_id <= $number_of_topics; $topic_id ++)
{
$forum_id = rand(1, $number_of_forums);
$last_forum_post[$forum_id] = $last_topic_post[$topic_id];
$topic = new ForumTopic($topic_id, $this->get_dummy_content('title'), '2011-03-31 12:10:00', 'Chamilo', 'Administrator', 0, $forum_id, $last_topic_post[$topic_id]);
$this->course->add_resource($topic);
}
// create forums
for ($forum_id = 1; $forum_id <= $number_of_forums; $forum_id ++)
{
$forum = new Forum($forum_id, $this->get_dummy_content('title'),$this->get_dummy_content('description'), rand(1, $number_of_categories), $last_forum_post[$forum_id]);
$this->course->add_resource($forum);
}
}
/**
* Create dummy learnpaths
*/
function create_dummy_learnpaths()
{
$number_of_learnpaths = rand(3,5);
$global_item_id = 1;
for($i=1; $i<=$number_of_learnpaths;$i++)
{
$chapters = array();
$number_of_chapters = rand(1,6);
for($chapter_id = 1; $chapter_id <= $number_of_chapters; $chapter_id++)
{
$chapter['name'] = $this->get_dummy_content('title');
$chapter['description'] = $this->get_dummy_content('description');
$chapter['display_order'] = $chapter_id;
$chapter['items'] = array();
$number_of_items = rand(5,20);
for( $item_id = 1; $item_id<$number_of_items; $item_id++)
{
$types = array(RESOURCE_ANNOUNCEMENT, RESOURCE_EVENT, RESOURCE_DOCUMENT,RESOURCE_LINK,RESOURCE_FORUM,RESOURCE_FORUMPOST,RESOURCE_FORUMTOPIC);
$type = $types[rand(0,count($types)-1)];
$resources = $this->course->resources[$type];
$resource = $resources[rand(0,count($resources)-1)];
$item = array();
$item['type'] = $resource->type;
$item['id'] = $resource->source_id;
$item['display_order'] = $item_id;
$item['title'] = $this->get_dummy_content('title');
$item['description'] = $this->get_dummy_content('description');
$item['ref_id'] = $global_item_id;
if( rand(0,5) == 1 && $item_id > 1)
{
$item['prereq_type'] = 'i';
$item['prereq'] = rand($global_item_id - $item_id,$global_item_id-1);
}
$chapter['items'][] = $item;
$global_item_id++;
}
$chapters[] = $chapter;
}
$lp = new CourseCopyLearnpath($i,$this->get_dummy_content('title'),$this->get_dummy_content('description'),1,$chapters);
$this->course->add_resource($lp);
}
}
/**
* Get dummy titles, descriptions and texts
*/
function get_dummy_content($type)
{
$dummy_text = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque lectus. Duis sodales. Vivamus et nunc. Phasellus interdum est a lorem. Fusce venenatis luctus lectus. Mauris quis turpis ac erat rhoncus suscipit. Phasellus elit dui, semper at, porta ut, egestas ac, enim. Quisque pellentesque, nisl nec consequat mollis, ipsum justo pellentesque nibh, non faucibus odio ante at lorem. Donec vitae pede ut felis ultricies semper. Suspendisse velit nibh, interdum quis, gravida nec, dapibus ac, leo. Cras id sem ut tellus tincidunt scelerisque. Aenean ac magna feugiat dolor accumsan dignissim. Integer eget nisl.
Ut sit amet nulla. Vestibulum venenatis posuere mauris. Nullam magna leo, blandit luctus, consequat quis, gravida nec, justo. Nam pede. Etiam ut nisl. In at quam scelerisque sapien faucibus commodo. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Proin mattis lorem quis nunc. Praesent placerat ligula id elit. Aenean blandit, purus sit amet pharetra auctor, libero orci rutrum felis, sit amet sodales mauris ipsum ultricies sapien. Vivamus wisi. Cras elit elit, ullamcorper ac, interdum nec, pulvinar nec, lacus. In lacus. Vivamus auctor, arcu vitae tincidunt porta, eros lacus tristique justo, vitae semper risus neque eget massa. Vivamus turpis.
Aenean ac wisi non enim aliquam scelerisque. Praesent eget mi. Vestibulum volutpat pulvinar justo. Phasellus sapien ante, pharetra id, bibendum sed, porta non, purus. Maecenas leo velit, luctus quis, porta non, feugiat sit amet, sapien. Proin vitae augue ut massa adipiscing placerat. Morbi ac risus. Proin dapibus eros egestas quam. Fusce fermentum lobortis elit. Duis lectus tellus, convallis nec, lobortis vel, accumsan ut, nunc. Nunc est. Donec ullamcorper laoreet quam.
Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Suspendisse potenti. Mauris mi. Vivamus risus lacus, faucibus sit amet, sollicitudin a, blandit et, justo. In hendrerit. Sed imperdiet, eros at fringilla tempor, turpis augue semper enim, quis rhoncus nibh enim quis dui. Sed massa sapien, mattis et, laoreet sit amet, dignissim nec, urna. Integer laoreet quam quis lectus. Curabitur convallis gravida dui. Nam metus. Ut sit amet augue in nibh interdum scelerisque. Donec venenatis, lacus et pulvinar euismod, libero massa condimentum pede, commodo tristique nunc massa eu quam. Donec vulputate. Aenean in nibh. Phasellus porttitor. Donec molestie, sem ac porttitor vulputate, mauris dui egestas libero, ac lobortis dolor sem vel ligula. Nam vulputate pretium libero. Cras accumsan. Vivamus lacinia sapien sit amet elit.
Duis bibendum elementum justo. Duis posuere. Fusce nulla odio, posuere eget, condimentum nec, venenatis eu, elit. In hac habitasse platea dictumst. Aenean ac sem in enim imperdiet feugiat. Integer tincidunt lectus at elit. Integer magna lacus, vehicula quis, eleifend eget, suscipit vitae, leo. Nunc porta augue nec enim. Curabitur vehicula volutpat enim. Aliquam consequat. Vestibulum rhoncus tellus vitae erat. Integer est. Quisque fermentum leo nec odio. Suspendisse lobortis sollicitudin augue. Nullam urna mi, suscipit eu, sagittis laoreet, ultrices ac, sem. Aliquam enim tortor, hendrerit non, cursus a, tristique sit amet, sapien. Suspendisse potenti. Aenean semper placerat neque.';
switch($type)
{
case 'description':
$descriptions = explode(".",$dummy_text);
return $descriptions[rand(0,count($descriptions)-1)];
break;
case 'title':
$dummy_text = str_replace(array("\n",'.',',',"\t"),array(' ','','',' '),$dummy_text);
$titles = explode(" ",$dummy_text);
return trim($titles[rand(0,count($titles)-1)]);
break;
case 'text':
$texts = explode("\n",$dummy_text);
return $texts[rand(0,count($texts)-1)];
break;
}
}
}

@ -1,6 +1,10 @@
<?php
/* For licensing terms, see /license.txt */
use Chamilo\CourseBundle\Component\CourseCopy\CourseSelectForm;
use Chamilo\CourseBundle\Component\CourseCopy\CourseBuilder;
use Chamilo\CourseBundle\Component\CourseCopy\CourseRestorer;
/**
* @package chamilo.backup
*/
@ -10,12 +14,6 @@ require_once '../inc/global.inc.php';
$current_course_tool = TOOL_COURSE_MAINTENANCE;
api_protect_course_script(true);
// Including additional libraries
require_once 'classes/CourseBuilder.class.php';
require_once 'classes/CourseRestorer.class.php';
require_once 'classes/CourseSelectForm.class.php';
// Notice for unauthorized people.
if (!api_is_allowed_to_edit()) {
api_not_allowed(true);
}
@ -30,7 +28,7 @@ if (function_exists('ini_set')) {
// Breadcrumbs
$interbreadcrumb[] = array(
'url' => '../course_info/maintenance.php?'.api_get_cidreq(),
'name' => get_lang('Maintenance'),
'name' => get_lang('Maintenance')
);
// The section (for the tabs)
@ -44,8 +42,8 @@ echo Display::page_header(get_lang('CopyCourse'));
// If a CourseSelectForm is posted or we should copy all resources, then copy them
if (Security::check_token('post') && (
(isset($_POST['action']) && $_POST['action'] == 'course_select_form') ||
(isset($_POST['copy_option']) && $_POST['copy_option'] == 'full_copy')
(isset($_POST['action']) && $_POST['action'] == 'course_select_form') ||
(isset($_POST['copy_option']) && $_POST['copy_option'] == 'full_copy')
)
) {
// Clear token

@ -1,6 +1,9 @@
<?php
/* For licensing terms, see /license.txt */
use Chamilo\CourseBundle\Component\CourseCopy\CourseSelectForm;
use Chamilo\CourseBundle\Component\CourseCopy\CourseBuilder;
/**
* Copy resources from one course in a session to another one.
*
@ -16,10 +19,6 @@ $current_course_tool = TOOL_COURSE_MAINTENANCE;
api_protect_global_admin_script();
api_protect_limit_for_session_admin();
require_once 'classes/CourseBuilder.class.php';
require_once 'classes/CourseRestorer.class.php';
require_once 'classes/CourseSelectForm.class.php';
$xajax = new xajax();
$xajax->registerFunction('search_courses');
@ -62,7 +61,7 @@ function make_select_session_list($name, $sessions, $attr = array())
} else {
$output .= '<option value = "0">'.get_lang('SelectASession').'</option>';
}
if (is_array($sessions)) {
foreach ($sessions as $session) {
$categoryName = '';
@ -86,13 +85,13 @@ function display_form()
$sessions = SessionManager::get_sessions_list(array(), array('name', 'ASC'));
// Actions
// Link back to the documents overview
$actionsLeft = '<a href="../admin/index.php">'.
Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('PlatformAdmin'), '', ICON_SIZE_MEDIUM).
'</a>';
$html .= Display::toolbarAction('toolbar-copysession', array(0 => $actionsLeft));
$html .= Display::return_message(get_lang('CopyCourseFromSessionToSessionExplanation'), 'warning');
@ -117,16 +116,16 @@ function display_form()
$html .= '<div class="col-sm-5" id="ajax_list_courses_destination">';
$html .= '<select id="destination" class="form-control" name="SessionCoursesListDestination[]" ></select>';
$html .= '</div></div>';
$options = '<div class="radio"><label><input type="radio" id="copy_option_1" name="copy_option" value="full_copy" checked="checked"/>';
$options .= get_lang('FullCopy').'</label></div>';
$options .= '<div class="radio"><label><input type="radio" id="copy_option_2" name="copy_option" value="select_items" disabled="disabled"/>';
$options .= ' '.get_lang('LetMeSelectItems').'</label></div>';
$options .= '<div class="checkbox"><label><input type="checkbox" id="copy_base_content_id" name="copy_only_session_items" />'.get_lang('CopyOnlySessionItems').'</label></div>';
$html .= Display::panel($options, get_lang('TypeOfCopy'));
$html .= '<div class="form-group"><div class="col-sm-12">';
$html .= '<button class="btn btn-success" type="submit" onclick="javascript:if(!confirm('."'".addslashes(api_htmlentities(get_lang('ConfirmYourChoice'), ENT_QUOTES))."'".')) return false;"><em class="fa fa-files-o"></em> '.get_lang('CopyCourse').'</button>';
@ -135,7 +134,7 @@ function display_form()
$html .= '</div></div>';
$html .= '</form>';
echo $html;
}

@ -1,5 +1,9 @@
<?php
/* For licensing terms, see /license.txt */
use Chamilo\CourseBundle\Component\CourseCopy\CourseSelectForm;
use Chamilo\CourseBundle\Component\CourseCopy\CourseBuilder;
/**
* Copy resources from one course in a session to another one.
*
@ -14,10 +18,6 @@ $current_course_tool = TOOL_COURSE_MAINTENANCE;
api_protect_course_script(true, true);
require_once 'classes/CourseBuilder.class.php';
require_once 'classes/CourseRestorer.class.php';
require_once 'classes/CourseSelectForm.class.php';
$xajax = new xajax();
$xajax->registerFunction('searchCourses');

@ -1,6 +1,11 @@
<?php
/* For licensing terms, see /license.txt */
use Chamilo\CourseBundle\Component\CourseCopy\CourseSelectForm;
use Chamilo\CourseBundle\Component\CourseCopy\CourseBuilder;
use Chamilo\CourseBundle\Component\CourseCopy\CourseArchiver;
/**
* Create a backup.
*
@ -39,12 +44,6 @@ $interbreadcrumb[] = array(
$nameTools = get_lang('CreateBackup');
Display::display_header($nameTools);
// Include additional libraries
require_once 'classes/CourseBuilder.class.php';
require_once 'classes/CourseArchiver.class.php';
require_once 'classes/CourseRestorer.class.php';
require_once 'classes/CourseSelectForm.class.php';
// Display the tool title
echo Display::page_header($nameTools);
@ -118,7 +117,6 @@ if (Security::check_token('post') && (
$token = Security::get_token();
$form->addElement('hidden', 'sec_token');
$form->setConstants(array('sec_token' => $token));
$form->display();
}
}

@ -1,5 +1,9 @@
<?php
/* For licensing terms, see /license.txt */
use Chamilo\CourseBundle\Component\CourseCopy\CourseSelectForm;
use Chamilo\CourseBundle\Component\CourseCopy\CourseArchiver;
/**
* Import a backup.
*
@ -8,6 +12,7 @@
*/
require_once '../inc/global.inc.php';
$current_course_tool = TOOL_COURSE_MAINTENANCE;
api_protect_course_script(true);
@ -35,12 +40,6 @@ $interbreadcrumb[] = array(
$nameTools = get_lang('ImportBackup');
Display::display_header($nameTools);
// Include additional libraries
require_once 'classes/CourseBuilder.class.php';
require_once 'classes/CourseArchiver.class.php';
require_once 'classes/CourseRestorer.class.php';
require_once 'classes/CourseSelectForm.class.php';
// Display the tool title
echo Display::page_header($nameTools);

@ -1,6 +1,10 @@
<?php
/* For licensing terms, see /license.txt */
use Chamilo\CourseBundle\Component\CourseCopy\CourseSelectForm;
use Chamilo\CourseBundle\Component\CourseCopy\CourseBuilder;
use Chamilo\CourseBundle\Component\CourseCopy\CourseRecycler;
/**
* Delete resources from a course.
*
@ -30,16 +34,9 @@ $interbreadcrumb[] = array(
$nameTools = get_lang('RecycleCourse');
Display::display_header($nameTools);
require_once 'classes/CourseBuilder.class.php';
require_once 'classes/CourseArchiver.class.php';
require_once 'classes/CourseRecycler.class.php';
require_once 'classes/CourseSelectForm.class.php';
// Display the tool title
echo Display::page_header($nameTools);
/* MAIN CODE */
if (Security::check_token('post') && (
isset($_POST['action']) &&
$_POST['action'] == 'course_select_form' ||

@ -571,6 +571,43 @@ define('SHORTCUTS_VERTICAL', 1);
// Image class
define('IMAGE_PROCESSOR', 'gd'); // 'imagick' or 'gd' strings
// Course copy
define('FILE_SKIP', 1);
define('FILE_RENAME', 2);
define('FILE_OVERWRITE', 3);
define('UTF8_CONVERT', false); //false by default
define('DOCUMENT','file');
define('FOLDER','folder');
define('RESOURCE_DOCUMENT', 'document');
define('RESOURCE_GLOSSARY', 'glossary');
define('RESOURCE_EVENT', 'calendar_event');
define('RESOURCE_LINK', 'link');
define('RESOURCE_COURSEDESCRIPTION', 'course_description');
define('RESOURCE_LEARNPATH', 'learnpath');
define('RESOURCE_ANNOUNCEMENT', 'announcement');
define('RESOURCE_FORUM', 'forum');
define('RESOURCE_FORUMTOPIC', 'thread');
define('RESOURCE_FORUMPOST', 'post');
define('RESOURCE_QUIZ', 'quiz');
define('RESOURCE_TEST_CATEGORY', 'test_category');
define('RESOURCE_QUIZQUESTION', 'Exercise_Question');
define('RESOURCE_TOOL_INTRO', 'Tool introduction');
define('RESOURCE_LINKCATEGORY', 'Link_Category');
define('RESOURCE_FORUMCATEGORY', 'Forum_Category');
define('RESOURCE_SCORM', 'Scorm');
define('RESOURCE_SURVEY', 'survey');
define('RESOURCE_SURVEYQUESTION', 'survey_question');
define('RESOURCE_SURVEYINVITATION', 'survey_invitation');
define('RESOURCE_WIKI', 'wiki');
define('RESOURCE_THEMATIC', 'thematic');
define('RESOURCE_ATTENDANCE', 'attendance');
define('RESOURCE_WORK', 'work');
define('RESOURCE_SESSION_COURSE', 'session_course');
define('RESOURCE_GRADEBOOK', 'gradebook');
// Make sure the CHAMILO_LOAD_WYSIWYG constant is defined
// To remove CKeditor libs from HTML, set this constant to true before loading
if (!defined('CHAMILO_LOAD_WYSIWYG')) {

@ -1,9 +1,7 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'LinkCategory.class.php';
require_once 'Announcement.class.php';
require_once 'Event.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy;
/**
* A course-object to use in Export/Import/Backup/Copy

@ -1,7 +1,9 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Course.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy;
use Chamilo\CourseBundle\Component\CourseCopy\Course;
/**
* Some functions to write a course-object to a zip-file and to read a course-
@ -50,7 +52,7 @@ class CourseArchiver
$course_info_file = $backup_dir . 'course_info.dat';
$zip_dir = api_get_path(SYS_ARCHIVE_PATH);
$user = api_get_user_info();
$date = new DateTime(api_get_local_time());
$date = new \DateTime(api_get_local_time());
$zip_file = $user['user_id'] . '_' . $course->code . '_' . $date->format('Ymd-His') . '.zip';
$php_errormsg = '';
$res = @mkdir($backup_dir, $perm_dirs);
@ -129,7 +131,7 @@ class CourseArchiver
}
// Zip the course-contents
$zip = new PclZip($zip_dir . $zip_file);
$zip = new \PclZip($zip_dir . $zip_file);
$zip->create($zip_dir . $tmp_dir_name, PCLZIP_OPT_REMOVE_PATH, $zip_dir . $tmp_dir_name . '/');
//$zip->deleteByIndex(0);
// Remove the temp-dir.
@ -143,7 +145,6 @@ class CourseArchiver
*/
public static function get_available_backups($user_id = null)
{
global $dateTimeFormatLong;
$backup_files = array();
$dirname = api_get_path(SYS_ARCHIVE_PATH) . '';
if ($dir = opendir($dirname)) {
@ -205,7 +206,7 @@ class CourseArchiver
@mkdir($unzip_dir, api_get_permissions_for_new_directories(), true);
@copy(api_get_path(SYS_ARCHIVE_PATH) . '' . $filename, $unzip_dir . '/backup.zip');
// unzip the archive
$zip = new PclZip($unzip_dir . '/backup.zip');
$zip = new \PclZip($unzip_dir . '/backup.zip');
@chdir($unzip_dir);
$zip->extract(PCLZIP_OPT_TEMP_FILE_ON);
// remove the archive-file

@ -1,33 +1,13 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
require_once 'GradeBookBackup.php';
require_once 'Course.class.php';
require_once 'Event.class.php';
require_once 'Link.class.php';
require_once 'ToolIntro.class.php';
require_once 'Document.class.php';
require_once 'ScormDocument.class.php';
require_once 'LinkCategory.class.php';
require_once 'CourseDescription.class.php';
require_once 'ForumPost.class.php';
require_once 'ForumTopic.class.php';
require_once 'Forum.class.php';
require_once 'ForumCategory.class.php';
require_once 'Quiz.class.php';
require_once 'QuizQuestion.class.php';
require_once 'CourseCopyTestCategory.php';
require_once 'CourseCopyLearnpath.class.php';
require_once 'Survey.class.php';
require_once 'SurveyQuestion.class.php';
require_once 'Glossary.class.php';
require_once 'CourseSession.class.php';
require_once 'wiki.class.php';
require_once 'Thematic.class.php';
require_once 'Attendance.class.php';
require_once 'Work.class.php';
require_once 'QuizQuestionOption.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy;
use Chamilo\CourseBundle\Component\CourseCopy\Resources\GradeBookBackup;
use Chamilo\CourseBundle\Component\CourseCopy\Resources\QuizQuestion;
use Database;
use TestCategory;
use Category;
/**
* Class CourseBuilder

@ -1,7 +1,7 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Course.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy;
/**
* Class to delete items from a Chamilo-course

@ -1,30 +1,7 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
require_once 'GradeBookBackup.php';
require_once 'Course.class.php';
require_once 'Event.class.php';
require_once 'Link.class.php';
require_once 'ToolIntro.class.php';
require_once 'LinkCategory.class.php';
require_once 'ForumCategory.class.php';
require_once 'Forum.class.php';
require_once 'ForumTopic.class.php';
require_once 'ForumPost.class.php';
require_once 'CourseDescription.class.php';
require_once 'CourseCopyLearnpath.class.php';
require_once 'Survey.class.php';
require_once 'SurveyQuestion.class.php';
require_once 'Glossary.class.php';
require_once 'wiki.class.php';
require_once 'Thematic.class.php';
require_once 'Work.class.php';
define('FILE_SKIP', 1);
define('FILE_RENAME', 2);
define('FILE_OVERWRITE', 3);
define('UTF8_CONVERT', false); //false by default
namespace Chamilo\CourseBundle\Component\CourseCopy;
/**
* Class CourseRestorer

@ -1,7 +1,7 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Course.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy;
/**
* Class to show a form to select resources

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* An announcement
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class Announcement extends Coursecopy\Resource
class Announcement extends Resource
{
/**
* The title of the announcement

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Attendance backup script
* @package chamilo.backup
*/
class Attendance extends Coursecopy\Resource
class Attendance extends Resource
{
public $params = array();
public $attendance_calendar = array();
@ -16,7 +16,7 @@ class Attendance extends Coursecopy\Resource
/**
* Create a new Thematic
*
* @param array parameters
* @param array $params
*/
public function __construct($params)
{

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Event backup script
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class CalendarEvent extends Coursecopy\Resource
class CalendarEvent extends Resource
{
/**
* The title

@ -1,86 +1,88 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class CourseCopyLearnpath
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class CourseCopyLearnpath extends Coursecopy\Resource
class CourseCopyLearnpath extends Resource
{
/**
* Type of learnpath (can be dokeos (1), scorm (2), aicc (3))
*/
public $lp_type;
/**
* The name
*/
public $name;
/**
* The reference
*/
public $ref;
/**
* The description
*/
public $description;
/**
* Path to the learning path files
*/
public $path;
/**
* Whether additional commits should be forced or not
*/
public $force_commit;
/**
* View mode by default ('embedded' or 'fullscreen')
*/
public $default_view_mod;
/**
* Default character encoding
*/
public $default_encoding;
/**
* Display order
*/
public $display_order;
/**
* Content editor/publisher
*/
public $content_maker;
/**
* Location of the content (local or remote)
*/
public $content_local;
/**
* License of the content
*/
public $content_license;
/**
* Whether to prevent reinitialisation or not
*/
public $prevent_reinit;
/**
* JavaScript library used
*/
public $js_lib;
/**
* Debug level for this lp
*/
public $debug;
/**
* The items
*/
public $items;
/**
* The learnpath visibility on the homepage
*/
public $visibility;
/**
* Type of learnpath (can be dokeos (1), scorm (2), aicc (3))
*/
public $lp_type;
/**
* The name
*/
public $name;
/**
* The reference
*/
public $ref;
/**
* The description
*/
public $description;
/**
* Path to the learning path files
*/
public $path;
/**
* Whether additional commits should be forced or not
*/
public $force_commit;
/**
* View mode by default ('embedded' or 'fullscreen')
*/
public $default_view_mod;
/**
* Default character encoding
*/
public $default_encoding;
/**
* Display order
*/
public $display_order;
/**
* Content editor/publisher
*/
public $content_maker;
/**
* Location of the content (local or remote)
*/
public $content_local;
/**
* License of the content
*/
public $content_license;
/**
* Whether to prevent reinitialisation or not
*/
public $prevent_reinit;
/**
* JavaScript library used
*/
public $js_lib;
/**
* Debug level for this lp
*/
public $debug;
/**
* The items
*/
public $items;
/**
* The learnpath visibility on the homepage
*/
public $visibility;
/**
* Author info
*/
public $author;
/**
* Author info
*/
public $author;
/**
* Author's image

@ -1,43 +1,43 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
/**
* Class CourseCopyTestcategory
* @author Hubert Borderiou <hubert.borderiou@grenet.fr>
* @package chamilo.backup
*/
class CourseCopyTestcategory extends Coursecopy\Resource
{
/**
* The title
*/
public $title;
/**
* The description
*/
public $description;
/**
* Create a new TestCategory
* @param string $title
* @param string $description
*/
public function __construct($id, $title, $description)
{
parent::__construct($id, RESOURCE_TEST_CATEGORY);
$this->title = $title;
$this->description = $description;
}
/**
* Show the test_category title, used in the partial recycle_course.php form
*/
function show()
{
parent::show();
echo $this->title;
}
}
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class CourseCopyTestcategory
* @author Hubert Borderiou <hubert.borderiou@grenet.fr>
* @package chamilo.backup
*/
class CourseCopyTestcategory extends Resource
{
/**
* The title
*/
public $title;
/**
* The description
*/
public $description;
/**
* Create a new TestCategory
* @param string $title
* @param string $description
*/
public function __construct($id, $title, $description)
{
parent::__construct($id, RESOURCE_TEST_CATEGORY);
$this->title = $title;
$this->description = $description;
}
/**
* Show the test_category title, used in the partial recycle_course.php form
*/
function show()
{
parent::show();
echo $this->title;
}
}

@ -1,8 +1,7 @@
<?php
/* For licensing terms, see /license.txt */
namespace Coursecopy;
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* A course description
@ -15,7 +14,7 @@ class CourseDescription extends Resource
* The title
*/
public $title;
/**
* The content
*/

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class CourseSession
* @author Jhon Hinojosa <jhon.hinojosa@beeznest.com>
* @package chamilo.backup
*/
class CourseSession extends Coursecopy\Resource
class CourseSession extends Resource
{
// The title session
public $title;

@ -1,17 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
define('DOCUMENT','file');
define('FOLDER','folder');
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class Document
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class Document extends Coursecopy\Resource
class Document extends Resource
{
public $path;
public $comment;

@ -0,0 +1,298 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Dummy course creator
* @package chamilo.backup
*/
class DummyCourseCreator
{
/**
* The dummy course
*/
public $course;
/**
*
*/
public $default_property = array();
/**
* Create the dummy course
*/
public function create_dummy_course($course_code)
{
$this->default_property['insert_user_id'] = '1';
$this->default_property['insert_date'] = date('Y-m-d H:i:s');
$this->default_property['lastedit_date'] = date('Y-m-d H:i:s');
$this->default_property['lastedit_user_id'] = '1';
$this->default_property['to_group_id'] = '0';
$this->default_property['to_user_id'] = null;
$this->default_property['visibility'] = '1';
$this->default_property['start_visible'] = null;
$this->default_property['end_visible'] = null;
$course = api_get_course_info($course_code);
$this->course = new Course();
$tmp_path = api_get_path(SYS_COURSE_PATH).$course['directory'].'/document/tmp_'.uniqid('');
@mkdir($tmp_path, api_get_permissions_for_new_directories(), true);
$this->course->backup_path = $tmp_path;
$this->create_dummy_links();
$this->create_dummy_events();
$this->create_dummy_forums();
$this->create_dummy_announcements();
$this->create_dummy_documents();
$this->create_dummy_learnpaths();
$cr = new CourseRestorer($this->course);
$cr->set_file_option(FILE_OVERWRITE);
$cr->restore($course_code);
rmdirr($tmp_path);
}
/**
* Create dummy documents
*/
public function create_dummy_documents()
{
$course = api_get_course_info();
$course_doc_path = $this->course->backup_path.'/document/';
$number_of_documents = rand(10, 30);
$extensions = array ('html', 'doc');
$directories = array();
$property = $this->default_property;
$property['lastedit_type'] = 'DocumentAdded';
$property['tool'] = TOOL_DOCUMENT;
$doc_id = 0;
for ($doc_id = 1; $doc_id < $number_of_documents; $doc_id ++)
{
$path = '';
$doc_type = rand(0, count($extensions) - 1);
$extension = $extensions[$doc_type];
$filename = $this->get_dummy_content('title').'_'.$doc_id.'.'.$extension;
$content = $this->get_dummy_content('text');
$dirs = rand(0, 3);
for ($i = 0; $i < $dirs; $i ++)
{
$path .= 'directory/';
$directories[$path] = 1;
}
$dir_to_make = $course_doc_path.$path;
if (!is_dir($dir_to_make))
{
@mkdir($dir_to_make, api_get_permissions_for_new_directories(), true);
}
$file = $course_doc_path.$path.$filename;
$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
$size = filesize($file);
$document = new Document($doc_id, '/'.$path.$filename,$this->get_dummy_content('description'),$this->get_dummy_content('title'), 'file', $size);
$document->item_properties[] = $property;
$this->course->add_resource($document);
}
foreach($directories as $path => $flag)
{
$path = substr($path,0,strlen($path)-1);
$document = new Document($doc_id++,'/'.$path, $this->get_dummy_content('description'),$this->get_dummy_content('title'),'folder',0);
$property['lastedit_type'] = 'FolderCreated';
$document->item_properties[] = $property;
$this->course->add_resource($document);
}
}
/**
* Create dummy announcements
*/
function create_dummy_announcements()
{
$property = $this->default_property;
$property['lastedit_type'] = 'AnnouncementAdded';
$property['tool'] = TOOL_ANNOUNCEMENT;
$number_of_announcements = rand(10, 30);
for ($i = 0; $i < $number_of_announcements; $i ++)
{
$time = mktime(rand(1, 24), rand(1, 60), 0, rand(1, 12), rand(1, 28), intval(date('Y')));
$date = date('Y-m-d', $time);
$announcement = new Announcement($i,$this->get_dummy_content('title'),$this->get_dummy_content('text'), $date,0);
$announcement->item_properties[] = $property;
$this->course->add_resource($announcement);
}
}
/**
* Create dummy events
*/
function create_dummy_events()
{
$number_of_events = rand(10, 30);
$property = $this->default_property;
$property['lastedit_type'] = 'AgendaAdded';
$property['tool'] = TOOL_CALENDAR_EVENT;
for ($i = 0; $i < $number_of_events; $i ++)
{
$hour = rand(1,24);
$minute = rand(1,60);
$second = rand(1,60);
$day = rand(1,28);
$month = rand(1,12);
$year = intval(date('Y'));
$time = mktime($hour,$minute,$second,$month,$day,$year);
$start_date = date('Y-m-d H:m:s', $time);
$hour = rand($hour,24);
$minute = rand($minute,60);
$second = rand($second,60);
$day = rand($day,28);
$month = rand($month,12);
$year = intval(date('Y'));
$time = mktime($hour,$minute,$second,$month,$day,$year);
$end_date = date('Y-m-d H:m:s', $time);
$event = new CalendarEvent(
$i,
$this->get_dummy_content('title'),
$this->get_dummy_content('text'),
$start_date,
$end_date
);
$event->item_properties[] = $property;
$this->course->add_resource($event);
}
}
/**
* Create dummy links
*/
function create_dummy_links()
{
// create categorys
$number_of_categories = rand(5, 10);
for ($i = 0; $i < $number_of_categories; $i ++)
{
$linkcat = new LinkCategory($i, $this->get_dummy_content('title'), $this->get_dummy_content('description'),$i);
$this->course->add_resource($linkcat);
}
// create links
$number_of_links = rand(5, 50);
$on_homepage = rand(0,20) == 0 ? 1 : 0;
$property = $this->default_property;
$property['lastedit_type'] = 'LinkAdded';
$property['tool'] = TOOL_LINK;
for ($i = 0; $i < $number_of_links; $i ++)
{
$link = new Link($i, $this->get_dummy_content('title'), 'http://www.google.com/search?q='.$this->get_dummy_content('title'), $this->get_dummy_content('description'), rand(0, $number_of_categories -1),$on_homepage);
$link->item_properties[] = $property;
$this->course->add_resource($link);
}
}
/**
* Create dummy forums
*/
function create_dummy_forums()
{
$number_of_categories = rand(2, 6);
$number_of_forums = rand(5, 50);
$number_of_topics = rand(30, 100);
$number_of_posts = rand(100, 1000);
$last_forum_post = array ();
$last_topic_post = array ();
// create categorys
$order = 1;
for ($i = 1; $i <= $number_of_categories; $i ++)
{
$forumcat = new ForumCategory($i, $this->get_dummy_content('title'), $this->get_dummy_content('description'), $order, 0, 0);
$this->course->add_resource($forumcat);
$order++;
}
// create posts
for ($post_id = 1; $post_id <= $number_of_posts; $post_id ++)
{
$topic_id = rand(1, $number_of_topics);
$last_topic_post[$topic_id] = $post_id;
$post = new ForumPost($post_id, $this->get_dummy_content('title'), $this->get_dummy_content('text'), date('Y-m-d H:i:s'), 1, 'Portal Administrator', 0, 0, $topic_id, 0, 1);
$this->course->add_resource($post);
}
// create topics
for ($topic_id = 1; $topic_id <= $number_of_topics; $topic_id ++)
{
$forum_id = rand(1, $number_of_forums);
$last_forum_post[$forum_id] = $last_topic_post[$topic_id];
$topic = new ForumTopic($topic_id, $this->get_dummy_content('title'), '2011-03-31 12:10:00', 'Chamilo', 'Administrator', 0, $forum_id, $last_topic_post[$topic_id]);
$this->course->add_resource($topic);
}
// create forums
for ($forum_id = 1; $forum_id <= $number_of_forums; $forum_id ++)
{
$forum = new Forum($forum_id, $this->get_dummy_content('title'),$this->get_dummy_content('description'), rand(1, $number_of_categories), $last_forum_post[$forum_id]);
$this->course->add_resource($forum);
}
}
/**
* Create dummy learnpaths
*/
function create_dummy_learnpaths()
{
$number_of_learnpaths = rand(3,5);
$global_item_id = 1;
for($i=1; $i<=$number_of_learnpaths;$i++)
{
$chapters = array();
$number_of_chapters = rand(1,6);
for($chapter_id = 1; $chapter_id <= $number_of_chapters; $chapter_id++)
{
$chapter['name'] = $this->get_dummy_content('title');
$chapter['description'] = $this->get_dummy_content('description');
$chapter['display_order'] = $chapter_id;
$chapter['items'] = array();
$number_of_items = rand(5,20);
for( $item_id = 1; $item_id<$number_of_items; $item_id++)
{
$types = array(RESOURCE_ANNOUNCEMENT, RESOURCE_EVENT, RESOURCE_DOCUMENT,RESOURCE_LINK,RESOURCE_FORUM,RESOURCE_FORUMPOST,RESOURCE_FORUMTOPIC);
$type = $types[rand(0,count($types)-1)];
$resources = $this->course->resources[$type];
$resource = $resources[rand(0,count($resources)-1)];
$item = array();
$item['type'] = $resource->type;
$item['id'] = $resource->source_id;
$item['display_order'] = $item_id;
$item['title'] = $this->get_dummy_content('title');
$item['description'] = $this->get_dummy_content('description');
$item['ref_id'] = $global_item_id;
if( rand(0,5) == 1 && $item_id > 1)
{
$item['prereq_type'] = 'i';
$item['prereq'] = rand($global_item_id - $item_id,$global_item_id-1);
}
$chapter['items'][] = $item;
$global_item_id++;
}
$chapters[] = $chapter;
}
$lp = new CourseCopyLearnpath($i,$this->get_dummy_content('title'),$this->get_dummy_content('description'),1,$chapters);
$this->course->add_resource($lp);
}
}
/**
* Get dummy titles, descriptions and texts
*/
function get_dummy_content($type)
{
$dummy_text = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque lectus. Duis sodales. Vivamus et nunc. Phasellus interdum est a lorem. Fusce venenatis luctus lectus. Mauris quis turpis ac erat rhoncus suscipit. Phasellus elit dui, semper at, porta ut, egestas ac, enim. Quisque pellentesque, nisl nec consequat mollis, ipsum justo pellentesque nibh, non faucibus odio ante at lorem. Donec vitae pede ut felis ultricies semper. Suspendisse velit nibh, interdum quis, gravida nec, dapibus ac, leo. Cras id sem ut tellus tincidunt scelerisque. Aenean ac magna feugiat dolor accumsan dignissim. Integer eget nisl.
Ut sit amet nulla. Vestibulum venenatis posuere mauris. Nullam magna leo, blandit luctus, consequat quis, gravida nec, justo. Nam pede. Etiam ut nisl. In at quam scelerisque sapien faucibus commodo. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Proin mattis lorem quis nunc. Praesent placerat ligula id elit. Aenean blandit, purus sit amet pharetra auctor, libero orci rutrum felis, sit amet sodales mauris ipsum ultricies sapien. Vivamus wisi. Cras elit elit, ullamcorper ac, interdum nec, pulvinar nec, lacus. In lacus. Vivamus auctor, arcu vitae tincidunt porta, eros lacus tristique justo, vitae semper risus neque eget massa. Vivamus turpis.
Aenean ac wisi non enim aliquam scelerisque. Praesent eget mi. Vestibulum volutpat pulvinar justo. Phasellus sapien ante, pharetra id, bibendum sed, porta non, purus. Maecenas leo velit, luctus quis, porta non, feugiat sit amet, sapien. Proin vitae augue ut massa adipiscing placerat. Morbi ac risus. Proin dapibus eros egestas quam. Fusce fermentum lobortis elit. Duis lectus tellus, convallis nec, lobortis vel, accumsan ut, nunc. Nunc est. Donec ullamcorper laoreet quam.
Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Suspendisse potenti. Mauris mi. Vivamus risus lacus, faucibus sit amet, sollicitudin a, blandit et, justo. In hendrerit. Sed imperdiet, eros at fringilla tempor, turpis augue semper enim, quis rhoncus nibh enim quis dui. Sed massa sapien, mattis et, laoreet sit amet, dignissim nec, urna. Integer laoreet quam quis lectus. Curabitur convallis gravida dui. Nam metus. Ut sit amet augue in nibh interdum scelerisque. Donec venenatis, lacus et pulvinar euismod, libero massa condimentum pede, commodo tristique nunc massa eu quam. Donec vulputate. Aenean in nibh. Phasellus porttitor. Donec molestie, sem ac porttitor vulputate, mauris dui egestas libero, ac lobortis dolor sem vel ligula. Nam vulputate pretium libero. Cras accumsan. Vivamus lacinia sapien sit amet elit.
Duis bibendum elementum justo. Duis posuere. Fusce nulla odio, posuere eget, condimentum nec, venenatis eu, elit. In hac habitasse platea dictumst. Aenean ac sem in enim imperdiet feugiat. Integer tincidunt lectus at elit. Integer magna lacus, vehicula quis, eleifend eget, suscipit vitae, leo. Nunc porta augue nec enim. Curabitur vehicula volutpat enim. Aliquam consequat. Vestibulum rhoncus tellus vitae erat. Integer est. Quisque fermentum leo nec odio. Suspendisse lobortis sollicitudin augue. Nullam urna mi, suscipit eu, sagittis laoreet, ultrices ac, sem. Aliquam enim tortor, hendrerit non, cursus a, tristique sit amet, sapien. Suspendisse potenti. Aenean semper placerat neque.';
switch($type)
{
case 'description':
$descriptions = explode(".",$dummy_text);
return $descriptions[rand(0,count($descriptions)-1)];
break;
case 'title':
$dummy_text = str_replace(array("\n",'.',',',"\t"),array(' ','','',' '),$dummy_text);
$titles = explode(" ",$dummy_text);
return trim($titles[rand(0,count($titles)-1)]);
break;
case 'text':
$texts = explode("\n",$dummy_text);
return $texts[rand(0,count($texts)-1)];
break;
}
}
}

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class forum
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class Forum extends Coursecopy\Resource
class Forum extends Resource
{
/**
* The title

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* A forum-category
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class ForumCategory extends Coursecopy\Resource
class ForumCategory extends Resource
{
/**
* Create a new ForumCategory

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* A forum-post
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class ForumPost extends Coursecopy\Resource
class ForumPost extends Resource
{
/**
* Create a new ForumPost

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* A forum-topic/thread
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class ForumTopic extends Coursecopy\Resource
class ForumTopic extends Resource
{
/**
* Create a new ForumTopic

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Add resource glossary
* @author Isaac flores
* @package chamilo.backup
*/
class Glossary extends Coursecopy\Resource
class Glossary extends Resource
{
public $glossary_id;
public $name;

@ -1,12 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class GradeBookBackup
*/
class GradeBookBackup extends Coursecopy\Resource
class GradeBookBackup extends Resource
{
public $categories;

@ -1,7 +1,7 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class Link
@ -9,7 +9,7 @@ require_once 'Resource.class.php';
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class Link extends Coursecopy\Resource
class Link extends Resource
{
/**
* The title

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* A LinkCategory
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class LinkCategory extends Coursecopy\Resource
class LinkCategory extends Resource
{
/**
* The title

@ -1,7 +1,7 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* An Quiz
@ -9,7 +9,7 @@ require_once 'Resource.class.php';
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class Quiz extends Coursecopy\Resource
class Quiz extends Resource
{
/**
* Create a new Quiz

@ -1,7 +1,7 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Exercises questions backup script
@ -9,7 +9,7 @@ require_once 'Resource.class.php';
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class QuizQuestion extends Coursecopy\Resource
class QuizQuestion extends Resource
{
/**
* The question

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class QuizQuestionOption
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class QuizQuestionOption extends Coursecopy\Resource
class QuizQuestionOption extends Resource
{
public $obj; //question_option

@ -1,34 +1,8 @@
<?php
/* For licensing terms, see /license.txt */
namespace Coursecopy;
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
define('RESOURCE_DOCUMENT', 'document');
define('RESOURCE_GLOSSARY', 'glossary');
define('RESOURCE_EVENT', 'calendar_event');
define('RESOURCE_LINK', 'link');
define('RESOURCE_COURSEDESCRIPTION', 'course_description');
define('RESOURCE_LEARNPATH', 'learnpath');
define('RESOURCE_ANNOUNCEMENT', 'announcement');
define('RESOURCE_FORUM', 'forum');
define('RESOURCE_FORUMTOPIC', 'thread');
define('RESOURCE_FORUMPOST', 'post');
define('RESOURCE_QUIZ', 'quiz');
define('RESOURCE_TEST_CATEGORY', 'test_category');
define('RESOURCE_QUIZQUESTION', 'Exercise_Question');
define('RESOURCE_TOOL_INTRO', 'Tool introduction');
define('RESOURCE_LINKCATEGORY', 'Link_Category');
define('RESOURCE_FORUMCATEGORY', 'Forum_Category');
define('RESOURCE_SCORM', 'Scorm');
define('RESOURCE_SURVEY', 'survey');
define('RESOURCE_SURVEYQUESTION', 'survey_question');
define('RESOURCE_SURVEYINVITATION', 'survey_invitation');
define('RESOURCE_WIKI', 'wiki');
define('RESOURCE_THEMATIC', 'thematic');
define('RESOURCE_ATTENDANCE', 'attendance');
define('RESOURCE_WORK', 'work');
define('RESOURCE_SESSION_COURSE', 'session_course');
define('RESOURCE_GRADEBOOK', 'gradebook');
/**
* Class Resource

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* ScormDocument class
* @author Olivier Brouckaert <oli.brouckaert@dokeos.com>
* @package chamilo.backup
*/
class ScormDocument extends Coursecopy\Resource
class ScormDocument extends Resource
{
public $path;
public $title;

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Survey
* @author Yannick Warnier <yannick.warnier@beeznest.com>
* @package chamilo.backup
*/
class Survey extends Coursecopy\Resource
class Survey extends Resource
{
/**
* The survey code

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* An SurveyInvitation
* @author Yannick Warnier <yannick.warnier@beeznest.com>
* @package chamilo.backup
*/
class SurveyInvitation extends Coursecopy\Resource
class SurveyInvitation extends Resource
{
/**
* Survey code

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* A SurveyQuestion
* @author Yannick Warnier <yannick.warnier@beeznest.com>
* @package chamilo.backup
*/
class SurveyQuestion extends Coursecopy\Resource
class SurveyQuestion extends Resource
{
/**
* Survey ID

@ -1,18 +1,19 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Thematic backup script
* @package chamilo.backup
*/
class Thematic extends Coursecopy\Resource
class Thematic extends Resource
{
public $params = array();
public $thematic_advance_list = array();
public $thematic_plan_list = array();
/**
* Create a new Thematic
*

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* A WWW-link from the Links-module in a Chamilo-course.
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class ToolIntro extends Coursecopy\Resource
class ToolIntro extends Resource
{
public $id;

@ -1,66 +1,68 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Class for migrating the wiki
* Wiki backup script
* @package chamilo.backup
* @author Matthias Crauwels <matthias.crauwels@UGent.be>, Ghent University
*/
class Wiki extends Coursecopy\Resource
{
public $id;
public $page_id;
public $reflink;
public $title;
public $content;
public $user_id;
public $group_id;
public $timestamp;
public $progress;
public $version;
/**
* Wiki constructor.
* @param int $id
* @param int $page_id
* @param $reflink
* @param $title
* @param $content
* @param $user_id
* @param $group_id
* @param $timestamp
* @param $progress
* @param $version
*/
public function __construct(
$id,
$page_id,
$reflink,
$title,
$content,
$user_id,
$group_id,
$timestamp,
$progress,
$version
) {
parent::__construct($id,RESOURCE_WIKI);
$this->id = $id;
$this->page_id = $page_id;
$this->reflink = $reflink;
$this->title = $title;
$this->content = $content;
$this->user_id = $user_id;
$this->group_id = $group_id;
$this->dtime = $timestamp;
$this->progress = $progress;
$this->version = $version;
}
public function show()
{
parent::show();
echo $this->reflink.' ('. (empty($this->group_id) ? get_lang('Everyone') : get_lang('Group') . ' ' . $this->group_id) .') ' . '<i>(' . $this->dtime . ')</i>';
}
}
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Class for migrating the wiki
* Wiki backup script
* @package chamilo.backup
* @author Matthias Crauwels <matthias.crauwels@UGent.be>, Ghent University
*/
class Wiki extends Resource
{
public $id;
public $page_id;
public $reflink;
public $title;
public $content;
public $user_id;
public $group_id;
public $timestamp;
public $progress;
public $version;
/**
* Wiki constructor.
* @param int $id
* @param int $page_id
* @param $reflink
* @param $title
* @param $content
* @param $user_id
* @param $group_id
* @param $timestamp
* @param $progress
* @param $version
*/
public function __construct(
$id,
$page_id,
$reflink,
$title,
$content,
$user_id,
$group_id,
$timestamp,
$progress,
$version
) {
parent::__construct($id,RESOURCE_WIKI);
$this->id = $id;
$this->page_id = $page_id;
$this->reflink = $reflink;
$this->title = $title;
$this->content = $content;
$this->user_id = $user_id;
$this->group_id = $group_id;
$this->dtime = $timestamp;
$this->progress = $progress;
$this->version = $version;
}
public function show()
{
parent::show();
echo $this->reflink.' ('. (empty($this->group_id) ? get_lang('Everyone') : get_lang('Group') . ' ' . $this->group_id) .') ' . '<i>(' . $this->dtime . ')</i>';
}
}

@ -1,14 +1,14 @@
<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
namespace Chamilo\CourseBundle\Component\CourseCopy\Resources;
/**
* Work/Assignment/Student publication backup script
* @author Yannick Warnier <yannick.warnier@beeznest.com>
* @package chamilo.backup
*/
class Work extends Coursecopy\Resource
class Work extends Resource
{
public $params = array();
Loading…
Cancel
Save