parent
4d9e96c841
commit
dbfe8396ae
@ -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,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,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; |
||||
|
||||
/** |
||||
* 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,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,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,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…
Reference in new issue