6 include_once
'./Modules/Course/classes/Objectives/class.ilLOTestAssignments.php';
61 $this->parent_obj = $a_parent;
65 $this->ctrl =
$GLOBALS[
'DIC'][
'ilCtrl'];
68 include_once
'./Modules/Course/classes/class.ilCourseObjective.php';
79 if (self::$instance) {
80 return self::$instance;
82 return self::$instance =
new self($a_parent);
109 $this->section = $a_section;
127 return (array) $this->failures_by_section[$a_section];
136 protected function appendFailure(
int $a_section,
string $a_failure_msg_key,
bool $is_error =
false)
138 $this->failures_by_section[$a_section][] = $a_failure_msg_key;
140 $this->error_by_section[$a_section] = $a_section;
150 $this->cmd_class = $a_cmd_class;
190 #if(!$this->getMaterialsStatus(false)) 192 # return 'materials'; 195 return 'showObjectiveCreation';
197 if ($this->
getSettings()->worksWithInitialTest()) {
200 if ($this->
getSettings()->hasSeparateInitialTests()) {
201 return 'testsOverview';
203 return 'testOverview';
209 if ($this->
getSettings()->hasSeparateQualifiedTests()) {
210 return 'testsOverview';
212 return 'testOverview';
216 return 'listObjectives';
218 return 'listObjectives';
231 $workflow = $DIC->ui()->factory()->listing()->workflow();
236 $steps[] = $workflow->step(
237 $this->lng->txt(
'crs_objective_status_settings'),
239 $this->ctrl->getLinkTarget($this->
getCmdClass(),
'settings')
246 $steps[] = $workflow->step(
247 $this->lng->txt(
'crs_objective_status_objective_creation'),
250 ? $this->ctrl->getLinkTarget($this->
getCmdClass(),
'listObjectives')
251 : $this->ctrl->getLinkTarget($this->
getCmdClass(),
'showObjectiveCreation')
252 )->withStatus($this->
determineStatus($done, self::SECTION_OBJECTIVES_NEW));
257 $this->ctrl->setParameterByClass(
'ilobjcoursegui',
'cmd',
'enableAdministrationPanel');
259 $steps[] = $workflow->step(
260 $this->lng->txt(
'crs_objective_status_materials'),
262 $this->ctrl->getLinkTargetByClass(
'ilobjcoursegui',
'')
269 $command = $this->
getSettings()->hasSeparateInitialTests() ?
274 $steps[] = $workflow->step(
275 $this->lng->txt(
'crs_objective_status_itest'),
277 $this->ctrl->getLinkTarget($this->
getCmdClass(), $command)
284 $command = $this->
getSettings()->hasSeparateQualifiedTests() ?
289 $steps[] = $workflow->step(
290 $this->lng->txt(
'crs_objective_status_qtest'),
292 $this->ctrl->getLinkTarget($this->
getCmdClass(), $command)
300 $steps[] = $workflow->step(
301 $this->lng->txt(
'crs_objective_status_objectives'),
303 $this->ctrl->getLinkTarget($this->
getCmdClass(),
'listObjectives')
304 )->withStatus($this->
determineStatus($done, self::SECTION_OBJECTIVES));
306 $list = $workflow->linear(
307 $this->lng->txt(
'crs_objective_status_configure'),
312 $renderer = $DIC->ui()->renderer();
313 return $renderer->render($list);
326 foreach ($this->
getFailures($a_section) as $failure_code) {
327 $mess[] = $this->lng->txt($failure_code);
342 return Step::SUCCESSFULLY;
344 return Step::UNSUCCESSFULLY;
346 if ($this->section == $section) {
347 return Step::IN_PROGRESS;
349 return Step::NOT_STARTED;
363 self::SECTION_SETTINGS => 0,
364 self::SECTION_OBJECTIVES_NEW => 1,
365 self::SECTION_MATERIALS => 2,
366 self::SECTION_ITES => 3,
367 self::SECTION_QTEST => $itest_enabled ? 4 : 3,
368 self::SECTION_OBJECTIVES => $itest_enabled ? 5 : 4
380 return isset($this->error_by_section[$a_section]);
402 if (!
$ret && $a_set_errors) {
403 $this->
appendFailure(self::SECTION_OBJECTIVES_NEW,
'crs_no_objectives_created');
417 foreach ((array) $childs as $tnode) {
418 if ($tnode[
'type'] ==
'rolf') {
421 if ($tnode[
'child'] == $this->
getSettings()->getInitialTest()) {
424 if ($tnode[
'child'] == $this->
getSettings()->getQualifiedTest()) {
430 $this->
appendFailure(self::SECTION_MATERIALS,
'crs_loc_err_stat_no_materials');
442 if ($this->
getSettings()->hasSeparateInitialTests()) {
443 if (count($this->objectives) <= 0) {
449 if (!
$GLOBALS[
'DIC'][
'tree']->isInTree($tst_ref)) {
451 $this->
appendFailure(self::SECTION_ITES,
'crs_loc_err_stat_no_it');
457 $this->
appendFailure(self::SECTION_ITES,
'crs_loc_err_stat_tst_offline',
true);
467 if (!
$GLOBALS[
'DIC'][
'tree']->isInTree($tst_ref)) {
469 $this->
appendFailure(self::SECTION_ITES,
'crs_loc_err_stat_no_it');
475 $this->
appendFailure(self::SECTION_ITES,
'crs_loc_err_stat_tst_offline',
true);
489 if ($this->
getSettings()->hasSeparateQualifiedTests()) {
490 if (count($this->objectives) <= 0) {
496 if (!
$GLOBALS[
'DIC'][
'tree']->isInTree($tst_ref)) {
498 $this->
appendFailure(self::SECTION_QTEST,
'crs_loc_err_stat_no_qt');
504 $this->
appendFailure(self::SECTION_QTEST,
'crs_loc_err_stat_tst_offline',
true);
511 $tst_ref = $this->
getSettings()->getQualifiedTest();
512 if (!
$GLOBALS[
'DIC'][
'tree']->isInTree($tst_ref)) {
514 $this->
appendFailure(self::SECTION_QTEST,
'crs_loc_err_stat_no_qt');
520 $this->
appendFailure(self::SECTION_QTEST,
'crs_loc_err_stat_tst_offline',
true);
534 include_once
'./Modules/Course/classes/Objectives/class.ilLOUtils.php';
537 include_once
'./Modules/Course/classes/Objectives/class.ilLORandomTestQuestionPools.php';
539 $this->parent_obj->getId(),
549 include_once
'./Modules/Course/classes/class.ilCourseObjectiveQuestion.php';
569 include_once
'./Modules/Course/classes/class.ilCourseObjective.php';
573 $this->
appendFailure(self::SECTION_OBJECTIVES,
'crs_loc_err_no_active_lo');
578 include_once
'./Modules/Course/classes/class.ilCourseObjectiveMaterials.php';
580 if (!count($obj->getMaterials())) {
582 $this->
appendFailure(self::SECTION_OBJECTIVES,
'crs_loc_err_no_active_mat');
592 $this->
appendFailure(self::SECTION_OBJECTIVES,
'crs_loc_err_no_active_qst');
600 $this->
appendFailure(self::SECTION_OBJECTIVES,
'crs_loc_err_no_active_qst');
632 include_once
'./Services/Object/classes/class.ilObjectFactory.php';
634 $tst =
$factory->getInstanceByRefId($qt,
false);
639 $tries = $tst->getNrOfTries();
646 include_once
'./Modules/Course/classes/class.ilCourseObjective.php';
649 $GLOBALS[
'DIC'][
'ilLog']->write(__METHOD__ .
': ' . $obj_tries);
650 return $obj_tries <= $tries;
660 include_once
'./Modules/Test/classes/class.ilObjTestAccess.php';
determineStatus(bool $done, int $section)
Determines workflow status of section.
getQualifiedTestStatus($a_set_errors=true)
Check status of qualified test.
static getInstanceByObjId($a_obj_id)
get singleton instance
getFailures($a_section)
Get failures by section.
determineActiveSection()
Determines active section position of workflow.
getFailureMessages($a_section)
Get error messages.
appendFailure(int $a_section, string $a_failure_msg_key, bool $is_error=false)
Append failure.
static getInstance($a_container_id)
Get instance by container id.
static lookupSequences($a_container_id, $a_objective_id, $a_test_id)
Lookup sequence ids type $ilDB.
getObjectivesAvailableStatus($a_set_errors=false)
getMaterialsStatus($a_set_errors=true)
Get status of materials.
static lookupMaxPasses($a_objective_id)
checkTestOnline($a_ref_id)
Check if test is online.
lookupQuestionsAssigned($a_test_ref_id)
Check if questions are assigned.
Presentation of the status of single steps during the configuration process.
hasSectionErrors($a_section)
static _getObjectiveIds($course_id, $a_activated_only=false)
static _isOffline($a_obj_id)
returns the objects's OFFline status
getFirstFailedStep()
Get first failed step.
class ilCourseObjectiveMaterials
setCmdClass($a_cmd_class)
Command class.
static lookupRandomTest($a_test_obj_id)
Check if test is a random test.
static getInstance(ilObject $a_parent)
Get instance.
static _lookupObjId($a_id)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
const SECTION_OBJECTIVES_NEW
getParentObject()
Get parent object.
getCmdClass()
Get cmd class.
setSection(int $a_section)
Set current section.
static _getCountObjectives($a_obj_id, $a_activated_only=false)
get count objectives
const TYPE_TEST_QUALIFIED
__construct(ilObject $a_parent)
Constructor.
getInitialTestStatus($a_set_errors=true)
Get initial test status.
static lookupQuestionsByObjective($a_test_id, $a_objective)
getSettingsStatus()
Check if course is lo confgured.
getObjectivesStatus($a_set_errors=true)