Moodle APIs  3.8
Moodle 3.8.6 (Build: 20201109)
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
backup_quiz_activity_task Class Reference

Provides the steps to perform one complete backup of the Quiz instance. More...

Inheritance diagram for backup_quiz_activity_task:
backup_activity_task backup_task base_task checksumable executable loggable

Public Member Functions

 add_result ($result)
 Add the given info to the current plan's results. More...
 
 add_step ($step)
 
 build ()
 Create all the steps that will be part of this task.
 
 calculate_checksum ()
 This function will return one unique and stable checksum for one instance of the class implementing it. More...
 
 destroy ()
 Destroy all circular references. More...
 
 execute ()
 Exceptionally override the execute method, so, based in the activity_included setting, we are able to skip the execution of one task completely.
 
 get_activityid ()
 
 get_backupid ()
 
 get_basepath ()
 
 get_contextid ()
 
 get_courseid ()
 
 get_logger ()
 
 get_moduleid ()
 
 get_modulename ()
 
 get_name ()
 
 get_progress ()
 Gets the progress reporter, which can be used to report progress within the backup or restore process. More...
 
 get_results ()
 Return the current plan's results. More...
 
 get_sectionid ()
 
 get_setting ($name)
 Tries to look for the instance specific setting value, task specific setting value or the common plan setting value - in that order. More...
 
 get_setting_value ($name)
 
 get_settings ()
 
 get_steps ()
 
 get_taskbasepath ()
 
 get_weight ()
 Returns the weight of this task, an approximation of the amount of time it will take. More...
 
 is_checksum_correct ($checksum)
 Given one checksum, returns if matches object's checksum (true) or no (false)
 
 is_excluding_activities ()
 
 log ($message, $level, $a=null, $depth=null, $display=false)
 This function will be responsible for handling the params, and to call to the corresponding logger->process() once all modifications in params have been performed.
 
 set_plan ($plan)
 
 setting_exists ($name)
 

Static Public Member Functions

static encode_content_links ($content)
 Encodes URLs to the index.php and view.php scripts. More...
 

Protected Member Functions

 add_setting ($setting)
 
 define_my_settings ()
 No specific settings for this activity.
 
 define_my_steps ()
 Defines backup steps to store the instance data and required questions.
 
 define_settings ()
 Defines the common setting that any backup activity will have.
 

Protected Attributes

 $activityid
 
 $built
 
 $contextid
 
 $executed
 
 $moduleid
 
 $modulename
 
 $name
 
 $plan
 
 $sectionid
 
 $settings
 
 $steps
 

Detailed Description

Provides the steps to perform one complete backup of the Quiz instance.

License
http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later

Member Function Documentation

◆ add_result()

base_task::add_result (   $result)
inherited

Add the given info to the current plan's results.

See also
base_plan::add_result()
Parameters
array$resultassociative array describing a result of a task/step

◆ calculate_checksum()

base_task::calculate_checksum ( )
inherited

This function will return one unique and stable checksum for one instance of the class implementing it.

It's each implementation responsibility to do it recursively if needed and use optional store (caching) of the checksum if necessary/possible

Implements checksumable.

◆ destroy()

base_task::destroy ( )
inherited

Destroy all circular references.

It helps PHP 5.2 a lot!

◆ encode_content_links()

static backup_quiz_activity_task::encode_content_links (   $content)
static

Encodes URLs to the index.php and view.php scripts.

Parameters
string$contentsome HTML text that eventually contains URLs to the activity instance scripts
Return values
stringthe content with the URLs encoded

Reimplemented from backup_activity_task.

◆ get_activityid()

backup_activity_task::get_activityid ( )
inherited
Return values
intthe id of the activity instance (id in the activity's instances table)

◆ get_contextid()

backup_activity_task::get_contextid ( )
inherited
Return values
intthe id of the associated CONTEXT_MODULE instance

◆ get_moduleid()

backup_activity_task::get_moduleid ( )
inherited
Return values
intthe course module id (id in the course_modules table)

◆ get_modulename()

backup_activity_task::get_modulename ( )
inherited
Return values
stringthe name of the module, eg 'workshop' (from the modules table)

◆ get_progress()

base_task::get_progress ( )
inherited

Gets the progress reporter, which can be used to report progress within the backup or restore process.

Return values
core

◆ get_results()

base_task::get_results ( )
inherited

Return the current plan's results.

Return values
array|null

◆ get_sectionid()

backup_activity_task::get_sectionid ( )
inherited
Return values
intthe course section id (id in the course_sections table)

◆ get_setting()

backup_activity_task::get_setting (   $name)
inherited

Tries to look for the instance specific setting value, task specific setting value or the common plan setting value - in that order.

Parameters
string$namethe name of the setting
Return values
mixed|nullthe value of the setting or null if not found

Reimplemented from base_task.

◆ get_taskbasepath()

backup_activity_task::get_taskbasepath ( )
inherited
Return values
stringfull path to the directory where this task writes its files

Reimplemented from base_task.

◆ get_weight()

base_task::get_weight ( )
inherited

Returns the weight of this task, an approximation of the amount of time it will take.

By default this value is 1. It can be increased for longer tasks.

Return values
intWeight

Reimplemented in backup_final_task.


The documentation for this class was generated from the following file: