parent
25e54c8cb1
commit
73fe2de679
@ -1,93 +0,0 @@ |
||||
services: |
||||
# default configuration for services in *this* file |
||||
_defaults: |
||||
# automatically injects dependencies in your services |
||||
autowire: true |
||||
# automatically registers your services as commands, event subscribers, etc. |
||||
autoconfigure: true |
||||
# this means you cannot fetch services directly from the container via $container->get() |
||||
# if you need to do this, you can override this setting on individual services |
||||
public: true |
||||
bind: |
||||
$passwordEncrypt: '%password_encryption%' |
||||
|
||||
# makes classes in src/ available to be used as services |
||||
# this creates a service per class whose id is the fully-qualified class name |
||||
AdminBundle\: |
||||
resource: '../../src/AdminBundle/*' |
||||
# you can exclude directories or files |
||||
# but if a service is unused, it's removed anyway |
||||
exclude: '../../src/AdminBundle/{ChamiloAdminBundle.php,Entity,Repository,Tests}' |
||||
|
||||
ClassificationBundle\: |
||||
resource: '../../src/ClassificationBundle/*' |
||||
# you can exclude directories or files |
||||
# but if a service is unused, it's removed anyway |
||||
exclude: '../../src/ClassificationBundle/{ChamiloClassificationBundle.php,Entity,Admin,Document,Repository,Tests}' |
||||
|
||||
ContactBundle\: |
||||
resource: '../../src/ContactBundle/*' |
||||
# you can exclude directories or files |
||||
# but if a service is unused, it's removed anyway |
||||
exclude: '../../src/ContactBundle/{ChamiloContactBundle.php,Entity,Admin,Controller,DependencyInjection,Form,Repository,Tests}' |
||||
|
||||
Chamilo\CoreBundle\: |
||||
resource: '../../src/CoreBundle/*' |
||||
# you can exclude directories or files |
||||
# but if a service is unused, it's removed anyway |
||||
exclude: '../../src/CoreBundle/{Admin,Block,Component,Composer,DependencyInjection,EventListener,Form,Framework,Menu,Migrations,Security,Settings,Twig,Controller,ChamiloCoreBundle.php,Entity,Repository,Tests}' |
||||
|
||||
Chamilo\CoreBundle\Controller\: |
||||
resource: '../../src/CoreBundle/Controller' |
||||
public: true |
||||
tags: ['controller.service_arguments'] |
||||
|
||||
Chamilo\UserBundle\: |
||||
resource: '../../src/UserBundle/*' |
||||
# you can exclude directories or files |
||||
# but if a service is unused, it's removed anyway |
||||
exclude: '../../src/UserBundle/{Admin,ChamiloUserBundle.php,Security/FOSUBUserProvider.php,DependencyInjection,Form,EventListener,Entity,Repository}' |
||||
|
||||
chamilo_lti_utils: |
||||
class: Chamilo\LtiBundle\Util\Utils |
||||
arguments: ['@chamilo.settings.manager'] |
||||
|
||||
# Doctrine audit |
||||
sonata_doctrine_orm_admin: |
||||
audit: |
||||
force: false # Audits are set in the admin.yml files with audit:true |
||||
|
||||
# Grid default template |
||||
#apy_data_grid: |
||||
# theme: ChamiloCoreBundle::grid.html.twig |
||||
# |
||||
|
||||
# Platform settings (new) |
||||
sylius_settings: |
||||
driver: doctrine/orm |
||||
|
||||
# Course settings |
||||
chamilo_course: |
||||
driver: doctrine/orm |
||||
# resources: |
||||
# parameter: |
||||
# classes: |
||||
# model: Chamilo\CourseBundle\Entity\CCourseSetting |
||||
# repository: Chamilo\CourseBundle\Repository\CCourseSettingRepository |
||||
|
||||
doctrine_cache: |
||||
providers: |
||||
sylius_settings: |
||||
type: file_system |
||||
chamilo_settings: |
||||
type: file_system |
||||
|
||||
gregwar_captcha: |
||||
width: 200 |
||||
height: 50 |
||||
length: 6 |
||||
|
||||
imports: |
||||
- {resource: ../../src/CoreBundle/Resources/config/services.yml} |
||||
- {resource: ../../src/PageBundle/Resources/config/services.yml} |
||||
- {resource: ../../vendor/knplabs/doctrine-behaviors/config/orm-services.yml} |
||||
@ -1,23 +0,0 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CoreBundle\Entity\Manager; |
||||
|
||||
use Chamilo\CoreBundle\Entity\Course; |
||||
use Sonata\CoreBundle\Model\BaseEntityManager; |
||||
|
||||
/** |
||||
* Class AccessUrlManager. |
||||
* |
||||
* @package Chamilo\CoreBundle\Entity\Manager |
||||
*/ |
||||
class AccessUrlManager extends BaseEntityManager |
||||
{ |
||||
/** |
||||
* @return Course |
||||
*/ |
||||
public function createUrl() |
||||
{ |
||||
return $this->create(); |
||||
} |
||||
} |
||||
@ -0,0 +1,183 @@ |
||||
services: |
||||
_defaults: |
||||
autowire: true |
||||
public: true |
||||
|
||||
# Platform settings |
||||
chamilo_core.settings.admin: |
||||
class: Chamilo\CoreBundle\Settings\AdminSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.admin, namespace: admin} |
||||
|
||||
chamilo_core.settings.announcement: |
||||
class: Chamilo\CoreBundle\Settings\AnnouncementSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.announcement, namespace: announcement} |
||||
|
||||
chamilo_core.settings.agenda: |
||||
class: Chamilo\CoreBundle\Settings\AgendaSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.agenda, namespace: agenda} |
||||
|
||||
chamilo_core.settings.attendance: |
||||
class: Chamilo\CoreBundle\Settings\AttendanceSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.attendance, namespace: attendance} |
||||
|
||||
chamilo_core.settings.cas: |
||||
class: Chamilo\CoreBundle\Settings\CasSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.cas, namespace: cas} |
||||
|
||||
chamilo_core.settings.certificate: |
||||
class: Chamilo\CoreBundle\Settings\CertificateSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.certificate, namespace: certificate} |
||||
|
||||
chamilo_core.settings.chat: |
||||
class: Chamilo\CoreBundle\Settings\ChatSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.chat, namespace: chat} |
||||
|
||||
chamilo_core.settings.course: |
||||
class: Chamilo\CoreBundle\Settings\CourseSettingsSchema |
||||
calls: |
||||
- [setToolChain, ['@chamilo_core.tool_chain']] |
||||
- [setRepository, ['@Chamilo\CoreBundle\Repository\CourseRepository']] |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.course, namespace: course} |
||||
|
||||
chamilo_core.settings.crons: |
||||
class: Chamilo\CoreBundle\Settings\CronSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.crons, namespace: crons} |
||||
|
||||
chamilo_core.settings.display: |
||||
class: Chamilo\CoreBundle\Settings\DisplaySettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.display, namespace: display} |
||||
|
||||
chamilo_core.settings.document: |
||||
class: Chamilo\CoreBundle\Settings\DocumentSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.document, namespace: document} |
||||
|
||||
chamilo_core.settings.dropbox: |
||||
class: Chamilo\CoreBundle\Settings\DropboxSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.dropbox, namespace: dropbox} |
||||
|
||||
chamilo_core.settings.editor: |
||||
class: Chamilo\CoreBundle\Settings\EditorSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.editor, namespace: editor} |
||||
|
||||
chamilo_core.settings.exercise: |
||||
class: Chamilo\CoreBundle\Settings\ExerciseSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.exercise, namespace: exercise} |
||||
|
||||
chamilo_core.settings.forum: |
||||
class: Chamilo\CoreBundle\Settings\ForumSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.forum, namespace: forum} |
||||
|
||||
chamilo_core.settings.glossary: |
||||
class: Chamilo\CoreBundle\Settings\GlossarySettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.glossary, namespace: glossary} |
||||
|
||||
chamilo_core.settings.gradebook: |
||||
class: Chamilo\CoreBundle\Settings\GradebookSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.gradebook, namespace: gradebook} |
||||
|
||||
chamilo_core.settings.group: |
||||
class: Chamilo\CoreBundle\Settings\GroupSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.group, namespace: group} |
||||
|
||||
chamilo_core.settings.language: |
||||
class: Chamilo\CoreBundle\Settings\LanguageSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.language, namespace: language} |
||||
|
||||
chamilo_core.settings.lp: |
||||
class: Chamilo\CoreBundle\Settings\LearningPathSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.lp, namespace: lp} |
||||
|
||||
chamilo_core.settings.mail: |
||||
class: Chamilo\CoreBundle\Settings\MailSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.mail, namespace: mail} |
||||
|
||||
chamilo_core.settings.message: |
||||
class: Chamilo\CoreBundle\Settings\MessageSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.message, namespace: message} |
||||
|
||||
chamilo_core.settings.platform: |
||||
class: Chamilo\CoreBundle\Settings\PlatformSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.platform, namespace: platform} |
||||
|
||||
chamilo_core.settings.profile: |
||||
class: Chamilo\CoreBundle\Settings\ProfileSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.profile, namespace: profile} |
||||
|
||||
chamilo_core.settings.ppt_to_lp: |
||||
class: Chamilo\CoreBundle\Settings\PptToLpSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.ppt_to_lp, namespace: ppt_to_lp} |
||||
|
||||
chamilo_core.settings.registration: |
||||
class: Chamilo\CoreBundle\Settings\RegistrationSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.registration, namespace: registration} |
||||
|
||||
chamilo_core.settings.search: |
||||
class: Chamilo\CoreBundle\Settings\SearchSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.search, namespace: search} |
||||
|
||||
chamilo_core.settings.security: |
||||
class: Chamilo\CoreBundle\Settings\SecuritySettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.security, namespace: security} |
||||
|
||||
chamilo_core.settings.session: |
||||
class: Chamilo\CoreBundle\Settings\SessionSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.session, namespace: session} |
||||
|
||||
chamilo_core.settings.skill: |
||||
class: Chamilo\CoreBundle\Settings\SkillSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.skill, namespace: skill} |
||||
|
||||
chamilo_core.settings.social: |
||||
class: Chamilo\CoreBundle\Settings\SocialSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.social, namespace: social} |
||||
|
||||
chamilo_core.settings.survey: |
||||
class: Chamilo\CoreBundle\Settings\SurveySettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.survey, namespace: survey} |
||||
|
||||
chamilo_core.settings.ticket: |
||||
class: Chamilo\CoreBundle\Settings\TicketSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.ticket, namespace: ticket} |
||||
|
||||
chamilo_core.settings.tracking: |
||||
class: Chamilo\CoreBundle\Settings\TrackingSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.tracking, namespace: tracking} |
||||
|
||||
chamilo_core.settings.webservice: |
||||
class: Chamilo\CoreBundle\Settings\WebServiceSettingsSchema |
||||
tags: |
||||
- {name: sylius.settings_schema, alias: chamilo_core.settings.webservice, namespace: webservice} |
||||
@ -0,0 +1,479 @@ |
||||
services: |
||||
_defaults: |
||||
autowire: false |
||||
public: true |
||||
autoconfigure: false |
||||
|
||||
# Tool chain loads the list of tool services with the tag "chamilo_core.tool" |
||||
# Tool chain is filled in file DependencyInjection/Compiler/ToolCompilerClass.php |
||||
chamilo_core.tool_chain: |
||||
class: 'Chamilo\CoreBundle\ToolChain' |
||||
|
||||
# Admin |
||||
chamilo_core.tool.admin: |
||||
class: Chamilo\CoreBundle\Tool\Admin |
||||
arguments: |
||||
- 'admin' |
||||
- 'admin' |
||||
- 'admin' |
||||
- 'admin.png' |
||||
- '' |
||||
- [AccessUrl, Course] |
||||
- 1 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Agenda tool |
||||
chamilo_core.tool.agenda: |
||||
class: Chamilo\CoreBundle\Tool\Agenda |
||||
arguments: |
||||
- 'calendar_event' |
||||
- 'authoring' |
||||
- 'calendar/agenda.php' |
||||
- 'agenda.gif' |
||||
- chamilo_course.settings.agenda |
||||
- [calendar_event, calendar_event_attachment] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Agenda tool settings |
||||
chamilo_course.settings.agenda: |
||||
class: Chamilo\CourseBundle\Settings\AgendaCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.agenda, namespace: agenda} |
||||
|
||||
# Announcement tool |
||||
chamilo_core.tool.announcement: |
||||
class: Chamilo\CoreBundle\Tool\Announcement |
||||
arguments: |
||||
- 'announcement' |
||||
- 'authoring' |
||||
- 'announcements/announcements.php' |
||||
- 'valves.gif' |
||||
- chamilo_course.settings.announcement |
||||
- [announcement] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Announcement tool settings |
||||
chamilo_course.settings.announcement: |
||||
class: Chamilo\CourseBundle\Settings\AnnouncementCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.announcement, namespace: announcement} |
||||
|
||||
chamilo_core.tool.assignment: |
||||
class: Chamilo\CoreBundle\Tool\Assignment |
||||
arguments: |
||||
- 'student_publication' |
||||
- 'interaction' |
||||
- 'work/work.php' |
||||
- 'works.gif' |
||||
- chamilo_course.settings.assignment |
||||
- [work] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.assignment: |
||||
class: Chamilo\CourseBundle\Settings\AssignmentCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.assignment, namespace: assignment} |
||||
|
||||
chamilo_core.tool.attendance: |
||||
class: Chamilo\CoreBundle\Tool\Attendance |
||||
arguments: |
||||
- 'attendance' |
||||
- 'authoring' |
||||
- 'attendance/index.php' |
||||
- 'attendance.gif' |
||||
- '@chamilo_course.settings.attendance' |
||||
- [attendance] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.attendance: |
||||
class: Chamilo\CourseBundle\Settings\AttendanceCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.attendance, namespace: attendance} |
||||
|
||||
chamilo_core.tool.blog: |
||||
class: Chamilo\CoreBundle\Tool\Blog |
||||
arguments: |
||||
- 'blog' |
||||
- 'admin' |
||||
- 'blog/blog_admin.php' |
||||
- 'blog_admin.gif' |
||||
- '@chamilo_course.settings.blog' |
||||
- [blog_management] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.blog: |
||||
class: Chamilo\CourseBundle\Settings\BlogCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.blog, namespace: blog} |
||||
|
||||
chamilo_core.tool.course_description: |
||||
class: Chamilo\CoreBundle\Tool\CourseDescription |
||||
arguments: |
||||
- course_description |
||||
- authoring |
||||
- course_description/index.php |
||||
- info.gif |
||||
- '@chamilo_course.settings.course_description' |
||||
- [course_description] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.course_description: |
||||
class: Chamilo\CourseBundle\Settings\CourseDescriptionCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.course_description, namespace: course_description} |
||||
|
||||
chamilo_core.tool.chat: |
||||
class: Chamilo\CoreBundle\Tool\Chat |
||||
arguments: |
||||
- chat |
||||
- interaction |
||||
- chat/chat.php |
||||
- chat.gif |
||||
- '@chamilo_course.settings.chat' |
||||
- ~ |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.chat: |
||||
class: Chamilo\CourseBundle\Settings\ChatCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.chat, namespace: chat} |
||||
|
||||
chamilo_core.tool.course_progress: |
||||
class: Chamilo\CoreBundle\Tool\CourseProgress |
||||
arguments: |
||||
- course_progress |
||||
- authoring |
||||
- course_progress/index.php |
||||
- course_progress.gif |
||||
- '@chamilo_course.settings.course_progress' |
||||
- [thematic, thematic_advance, thematic_plan] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.course_progress: |
||||
class: Chamilo\CourseBundle\Settings\CourseProgressCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.course_progress, namespace: course_progress} |
||||
|
||||
chamilo_core.tool.document: |
||||
class: Chamilo\CoreBundle\Tool\Document |
||||
arguments: |
||||
- document |
||||
- authoring |
||||
- document/document.php |
||||
- folder_document.gif |
||||
- '@chamilo_course.settings.document' |
||||
- [document] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.document: |
||||
class: Chamilo\CourseBundle\Settings\DocumentCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.document, namespace: document} |
||||
|
||||
chamilo_core.tool.dropbox: |
||||
class: Chamilo\CoreBundle\Tool\Dropbox |
||||
arguments: |
||||
- dropbox |
||||
- interaction |
||||
- dropbox/index.php |
||||
- dropbox.gif |
||||
- '@chamilo_course.settings.dropbox' |
||||
- [dropbox] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.dropbox: |
||||
class: Chamilo\CourseBundle\Settings\DropboxCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.dropbox, namespace: dropbox} |
||||
|
||||
chamilo_core.tool.exercise: |
||||
class: Chamilo\CoreBundle\Tool\Exercise |
||||
arguments: |
||||
- quiz |
||||
- authoring |
||||
- exercise/exercise.php |
||||
- quiz.gif |
||||
- '@chamilo_course.settings.exercise' |
||||
- [CQuiz, CQuizQuestionCategory, CQuizQuestionCategory, CExerciseCategory] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.exercise: |
||||
class: Chamilo\CourseBundle\Settings\ExerciseCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.quiz, namespace: quiz} |
||||
|
||||
chamilo_core.tool.forum: |
||||
class: Chamilo\CoreBundle\Tool\Forum |
||||
arguments: |
||||
- forum |
||||
- interaction |
||||
- forum/index.php |
||||
- forum.gif |
||||
- '@chamilo_course.settings.forum' |
||||
- [forum, forum_attachment, forum_category, forum_post, forum_thread] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.forum: |
||||
class: Chamilo\CourseBundle\Settings\ForumCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.forum, namespace: forum} |
||||
|
||||
chamilo_core.tool.glossary: |
||||
class: Chamilo\CoreBundle\Tool\Glossary |
||||
arguments: |
||||
- glossary |
||||
- authoring |
||||
- glossary/index.php |
||||
- glossary.gif |
||||
- '@chamilo_course.settings.glossary' |
||||
- [glossary] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.glossary: |
||||
class: Chamilo\CourseBundle\Settings\GlossaryCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.glossary, namespace: glossary} |
||||
|
||||
chamilo_core.tool.gradebook: |
||||
class: Chamilo\CoreBundle\Tool\Gradebook |
||||
arguments: |
||||
- gradebook |
||||
- authoring |
||||
- gradebook/index.php |
||||
- gradebook.gif |
||||
- '@chamilo_course.settings.gradebook' |
||||
- ~ |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.gradebook: |
||||
class: Chamilo\CourseBundle\Settings\GradebookCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.gradebook, namespace: gradebook} |
||||
|
||||
chamilo_core.tool.group: |
||||
class: Chamilo\CoreBundle\Tool\Group |
||||
arguments: |
||||
- group |
||||
- interaction |
||||
- group/group.php |
||||
- group.gif |
||||
- '@chamilo_course.settings.group' |
||||
- ~ |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.group: |
||||
class: Chamilo\CourseBundle\Settings\GroupCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.group, namespace: group} |
||||
|
||||
chamilo_core.tool.learning_path: |
||||
class: Chamilo\CoreBundle\Tool\LearningPath |
||||
arguments: |
||||
- learnpath |
||||
- authoring |
||||
- lp/lp_controller.php |
||||
- scorms.gif |
||||
- '@chamilo_course.settings.learning_path' |
||||
- [learnpath, learnpath_category] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.learning_path: |
||||
class: Chamilo\CourseBundle\Settings\LearningPathCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.learnpath, namespace: learnpath} |
||||
|
||||
chamilo_core.tool.link: |
||||
class: Chamilo\CoreBundle\Tool\Link |
||||
arguments: |
||||
- link |
||||
- authoring |
||||
- link/link.php |
||||
- links.gif |
||||
- '@chamilo_course.settings.link' |
||||
- [link, link_category] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
chamilo_course.settings.link: |
||||
class: Chamilo\CourseBundle\Settings\LinkCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.link, namespace: link} |
||||
|
||||
# Maintenance |
||||
chamilo_course.settings.maintenance: |
||||
class: Chamilo\CourseBundle\Settings\MaintenanceCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.maintenance, namespace: maintenance} |
||||
|
||||
chamilo_core.tool.maintenance: |
||||
class: Chamilo\CoreBundle\Tool\Maintenance |
||||
arguments: |
||||
- course_maintenance |
||||
- admin |
||||
- course_info/maintenance.php |
||||
- backup.gif |
||||
- '@chamilo_course.settings.maintenance' |
||||
- ~ |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Notebook |
||||
chamilo_course.settings.notebook: |
||||
class: Chamilo\CourseBundle\Settings\NotebookCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.notebook, namespace: notebook} |
||||
|
||||
chamilo_core.tool.notebook: |
||||
class: Chamilo\CoreBundle\Tool\Notebook |
||||
arguments: |
||||
- notebook |
||||
- interaction |
||||
- notebook/index.php |
||||
- notebook.gif |
||||
- '@chamilo_course.settings.notebook' |
||||
- [notebook] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
chamilo_core.tool.settings: |
||||
class: Chamilo\CoreBundle\Tool\Settings |
||||
arguments: |
||||
- course_setting |
||||
- admin |
||||
- course_info/infocours.php |
||||
- reference.gif |
||||
- '@chamilo_course.settings.settings' |
||||
- ~ |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.settings: |
||||
class: Chamilo\CourseBundle\Settings\SettingsCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.settings, namespace: settings} |
||||
# Survey |
||||
chamilo_core.tool.survey: |
||||
class: Chamilo\CoreBundle\Tool\Survey |
||||
arguments: |
||||
- survey |
||||
- interaction |
||||
- survey/survey_list.php |
||||
- survey.gif |
||||
- '@chamilo_course.settings.survey' |
||||
- [survey] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
chamilo_course.settings.survey: |
||||
class: Chamilo\CourseBundle\Settings\SurveyCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.survey, namespace: survey} |
||||
|
||||
chamilo_core.tool.tracking: |
||||
class: Chamilo\CoreBundle\Tool\Tracking |
||||
arguments: |
||||
- tracking |
||||
- admin |
||||
- tracking/courseLog.php |
||||
- statistics.gif |
||||
- '@chamilo_course.settings.tracking' |
||||
- ~ |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.tracking: |
||||
class: Chamilo\CourseBundle\Settings\TrackingCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.tracking, namespace: tracking} |
||||
|
||||
chamilo_core.tool.user: |
||||
class: Chamilo\CoreBundle\Tool\User |
||||
arguments: |
||||
- user |
||||
- interaction |
||||
- user/user.php |
||||
- members.gif |
||||
- '@chamilo_course.settings.user' |
||||
- ~ |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
# Course settings |
||||
chamilo_course.settings.user: |
||||
class: Chamilo\CourseBundle\Settings\UserCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.user, namespace: user} |
||||
|
||||
chamilo_core.tool.wiki: |
||||
class: Chamilo\CoreBundle\Tool\Wiki |
||||
arguments: |
||||
- wiki |
||||
- interaction |
||||
- wiki/index.php |
||||
- wiki.gif |
||||
- '@chamilo_course.settings.wiki' |
||||
- [wiki] |
||||
- 0 |
||||
tags: |
||||
- {name: chamilo_core.tool} |
||||
|
||||
# Course settings |
||||
chamilo_course.settings.wiki: |
||||
class: Chamilo\CourseBundle\Settings\WikiCourseSettingsSchema |
||||
tags: |
||||
- {name: chamilo_course.settings_schema, alias: chamilo_course.settings.wiki, namespace: wiki} |
||||
@ -0,0 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Admin. |
||||
*/ |
||||
class Admin extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Agenda. |
||||
*/ |
||||
class Agenda extends BaseTool |
||||
class Agenda extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Announcement. |
||||
*/ |
||||
class Announcement extends BaseTool |
||||
class Announcement extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Assignment. |
||||
*/ |
||||
class Assignment extends BaseTool |
||||
class Assignment extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Attendance. |
||||
*/ |
||||
class Attendance extends BaseTool |
||||
class Attendance extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Blog. |
||||
*/ |
||||
class Blog extends BaseTool |
||||
class Blog extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class CourseDescription. |
||||
*/ |
||||
class Chat extends BaseTool |
||||
class Chat extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class CourseDescription. |
||||
*/ |
||||
class CourseDescription extends BaseTool |
||||
class CourseDescription extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class CourseDescription. |
||||
*/ |
||||
class CourseProgress extends BaseTool |
||||
class CourseProgress extends AbstractTool |
||||
{ |
||||
} |
||||
@ -0,0 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Document. |
||||
*/ |
||||
class Document extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Dropbox. |
||||
*/ |
||||
class Dropbox extends BaseTool |
||||
class Dropbox extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Exercise. |
||||
*/ |
||||
class Exercise extends BaseTool |
||||
class Exercise extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Forum. |
||||
*/ |
||||
class Forum extends BaseTool |
||||
class Forum extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Glossary. |
||||
*/ |
||||
class Glossary extends BaseTool |
||||
class Glossary extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Gradebook. |
||||
*/ |
||||
class Gradebook extends BaseTool |
||||
class Gradebook extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Group. |
||||
*/ |
||||
class Group extends BaseTool |
||||
class Group extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class LearningPath. |
||||
*/ |
||||
class LearningPath extends BaseTool |
||||
class LearningPath extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Link. |
||||
*/ |
||||
class Link extends BaseTool |
||||
class Link extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Maintenance. |
||||
*/ |
||||
class Maintenance extends BaseTool |
||||
class Maintenance extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Notebook. |
||||
*/ |
||||
class Notebook extends BaseTool |
||||
class Notebook extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Announcement. |
||||
*/ |
||||
class Settings extends BaseTool |
||||
class Settings extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Survey. |
||||
*/ |
||||
class Survey extends BaseTool |
||||
class Survey extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,7 +1,7 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Interface ToolInterface. |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Tracking. |
||||
*/ |
||||
class Tracking extends BaseTool |
||||
class Tracking extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class User. |
||||
*/ |
||||
class User extends BaseTool |
||||
class User extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,11 +1,11 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
namespace Chamilo\CoreBundle\Tool; |
||||
|
||||
/** |
||||
* Class Wiki. |
||||
*/ |
||||
class Wiki extends BaseTool |
||||
class Wiki extends AbstractTool |
||||
{ |
||||
} |
||||
@ -1,10 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace Chamilo\CourseBundle\Tool; |
||||
|
||||
/** |
||||
* Class Document. |
||||
*/ |
||||
class Document extends BaseTool |
||||
{ |
||||
} |
||||
@ -1,10 +1,10 @@ |
||||
services: |
||||
chamilo_user.security.user_provider: |
||||
class: Chamilo\UserBundle\Security\FOSUBUserProvider |
||||
arguments: |
||||
- '@sonata.user.orm.user_manager' |
||||
- {facebook: facebookId, google: googleId, github: githubId} |
||||
chamilo_user.security.user_provider: |
||||
class: Chamilo\UserBundle\Security\FOSUBUserProvider |
||||
arguments: |
||||
- '@sonata.user.orm.user_manager' |
||||
- {facebook: facebookId, google: googleId, github: githubId} |
||||
|
||||
chamilo_user.security.login_form_authenticator: |
||||
class: Chamilo\UserBundle\Security\LoginFormAuthenticator |
||||
autowire: true |
||||
chamilo_user.security.login_form_authenticator: |
||||
class: Chamilo\UserBundle\Security\LoginFormAuthenticator |
||||
autowire: true |
||||
|
||||
Loading…
Reference in new issue