| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <?php
- // This file is part of the Sloodle project (www.sloodle.org)
-
- /**
- * This file defines the base class for Sloodle modules.
- * (Each module is effectively a sub-type of the Moodle module).
- *
- * @package sloodle
- * @copyright Copyright (c) 2008 Sloodle (various contributors)
- * @license http://www.gnu.org/licenses/gpl-3.0.html GNU GPL v3
- *
- * @contributor Peter R. Bloomfield
- */
-
- /**
- * Sloodle module base class.
- * An abstract class which must be overridden by sub-classes.
- * @package sloodle
- */
- class SloodleModule
- {
- // DATA //
-
- /**
- * Reference to the containing {@link SloodleSession} object.
- * If null, then this module is being used outwith the framework.
- * <b>Always check the status of the variable before using it!</b>
- * @var object
- * @access protected
- */
- var $_session = null;
-
-
- // FUNCTIONS //
-
- /**
- * Constructor - initialises the session variable
- * @param object &$_session A reference to the containing {@link SloodleSession} object, if available.
- */
- function SloodleModule(&$_session)
- {
- if (!is_null($_session)) $this->_session = &$_session;
- }
-
-
- /**
- * Loads data from the database.
- * Note: even if the function fails, it may still have overwritten some or all existing data in the object.
- * @param mixed $id The site-wide unique identifier for all modules. Type depends on VLE. On Moodle, it is an integer course module identifier ('id' field of 'course_modules' table)
- * @return bool True if successful, or false otherwise
- */
- function load($id)
- {
- return true;
- }
-
-
- // BACKUP AND RESTORE //
-
- /**
- * Backs-up secondary data regarding this module.
- * That includes everything except the main 'sloodle' database table for this instance.
- * @param object $bf Handle to the file which backup data should be written to.
- * @param bool $includeuserdata Indicates whether or not to backup 'user' data, i.e. any content. Most SLOODLE tools don't have any user data.
- * @return bool True if successful, or false on failure.
- */
- function backup($bf, $includeuserdata)
- {
- return true;
- }
-
-
- /**
- * Restore this module's secondary data into the database.
- * This ignores any member data, so can be called statically.
- * @param int $sloodleid The ID of the primary SLOODLE entry this restore belongs to (i.e. the ID of the record in the "sloodle" table)
- * @param array $info An associative array representing the XML backup information for the secondary module data
- * @param bool $includeuserdata Indicates whether or not to restore user data
- * @return bool True if successful, or false on failure.
- */
- function restore($sloodleid, $info, $includeuserdata)
- {
- return true;
- }
-
- // Action handlers //
- // The following can be extended if your module wants to be notified when another module handles something.
- // ...based on configuration options set on the object in question.
- // Developed for Awards: eg. You want the quiz to tell you that somebody has got a quiz question right
- // ...so that you can give them a prize.
- // This infrastructure isn't used anywhere else as of 2011-06-27, but it may have other applications.
- /**
- * Returns an array of names of configuration parameters which trigger some kind of action on our part.
- * See SloodleModuleAwards for an example of how this is used.
- * @return array
- */
- function ActionConfigNames() {
- return array();
- }
- /*
- TODO: Not using this yet - will be used for tracker
- * array $relevant_configs an array of actions that the object is interested in if the object does them
- * object $active_object
- */
- function HandleObjectInitializationSteps( $relevant_configs, $active_object ) {
- return true;
- }
- /**
- * param array $relevant_configs - config params and values that this module handles.
- * param int $controllerid: ID of controller that called us
- * param int $multiplier A number telling us the scale of the thing that happened.
- * param int $userid ID of the user involved.
- * param string $useruuid
- * param string $objectuuid
- * @ return false
- *
- */
- function ProcessActions( $relevant_configs, $controllerid, $multiplier, $userid, $useruuid, $objectuuid ) {
- return true;
- }
-
- /**
- * Gets the name of the user data required by this type, or an empty string if none is required.
- * For example, a chatroom would use the name "Messages" for user data.
- * Note that this should respect current language settings in Moodle.
- * @return string Localised name of the user data.
- */
- function get_user_data_name()
- {
- return '';
- }
-
- /**
- * Gets the number of user data records to be backed-up.
- * @return int A count of the number of user data records which can be backed-up.
- */
- function get_user_data_count()
- {
- return 0;
- }
-
- // ACCESSORS //
-
- /**
- * Gets the name of this module instance.
- * @return string The name of this controller
- */
- function get_name()
- {
- return '';
- }
-
- /**
- * Gets the intro description of this module instance, if available.
- * @return string The intro description of this controller
- */
- function get_intro()
- {
- return '';
- }
-
- /**
- * Gets the identifier of the course this controller belongs to.
- * @return mixed Course identifier. Type depends on VLE. (In Moodle, it will be an integer).
- */
- function get_course_id()
- {
- return 0;
- }
-
- /**
- * Gets the time at which this instance was created, or 0 if unknown.
- * @return int Timestamp
- */
- function get_creation_time()
- {
- return 0;
- }
-
- /**
- * Gets the time at which this instance was last modified, or 0 if unknown.
- * @return int Timestamp
- */
- function get_modification_time()
- {
- return 0;
- }
-
-
- /**
- * Gets the short type name of this instance.
- * @return string
- */
- function get_type()
- {
- return '';
- }
- /**
- * Gets the full type name of this instance, according to the current language pack, if available.
- * Note: should be overridden by sub-classes.
- * @return string Full type name if possible, or the short name otherwise.
- */
- function get_type_full()
- {
- return '';
- }
- }
- ?>
|