class CourseHandler in Course 6
Same name and namespace in other branches
- 7.2 includes/CourseHandler.inc \CourseHandler
- 7 includes/CourseHandler.inc \CourseHandler
@file course.core.inc File for main Course class.
Hierarchy
- class \CourseHandler
Expanded class hierarchy of CourseHandler
File
- includes/
course.core.inc, line 7 - course.core.inc File for main Course class.
View source
class CourseHandler {
// Could be 'outline', 'course_object', 'settings'...
public $handlerType = NULL;
// For objects that store things in the database, this is the field where all
// non-schema fields will be serialized to.
public $table = NULL;
public $primaryKey = NULL;
public $serializedField = NULL;
// Configuration for this handler.
protected $config = array();
private $accessMessages = array();
function __construct($config = array()) {
foreach ($config as $key => $value) {
if ($key === $this->serializedField && !is_array($value)) {
$data = unserialize($value);
if (is_array($data)) {
foreach ($data as $key2 => $value2) {
$this
->setOption($key2, $value2);
}
}
}
else {
$this
->setOptions((array) $config);
}
}
}
// Handlers must have an ID.
function getId() {
return $this
->getOption($this->primaryKey);
}
/**
* Stub. Get the summary of an object's options.
*
* @return array
* An associative array of summary keys and values.
*/
public function getOptionsSummary() {
$summary = array();
foreach ($this
->getWarnings() as $warning) {
$warning = '<span class="error">' . $warning . '</span>';
$summary['warnings'] = filter_xss_admin($warning);
}
return $summary;
}
/**
* Get an object's configuration.
*
* This can be overridden. For example, values stored in courseobject sessions
* need to have priority over those in the database.
*
* @return array
*/
public function getOptions() {
return array_merge($this
->optionsDefinition(), (array) $this->config);
}
/**
* Get an option stored in this CourseObject.
*
* @return mixed
*/
public final function getOption($key) {
$config = $this
->getOptions();
if (isset($config[$key])) {
return $config[$key];
}
else {
return NULL;
}
}
/**
* Set an option for this handler.
*
* @param string $option
* An option key.
* @param mixed $value
* The option value.
*
* @return CourseHandler
*/
public final function setOption($option, $value) {
$this->config[$option] = $value;
return $this;
}
/**
* Set this entire handler's options.
*
* Deserialize the serialized column if necessary.
*
* @param array $options
* An array of options.
*
* @return CourseHandler
*/
public final function setOptions($options) {
$config = (array) $options;
// Make sure the serialized field is not already extracted.
if (isset($config[$this->serializedField]) && is_string($config[$this->serializedField])) {
$data = unserialize($config[$this->serializedField]);
if (is_array($data)) {
// Merge serialized data onto options. Schema fields take precedence.
$config = array_merge($data, $config);
}
}
$this->config = $config;
return $this;
}
/**
* Merge an array of options onto the existing options.
*
* @param array $options
*
* @return CourseHandler
* Some type of CourseHandler (probably CourseObject or
* CourseObjectFulfillment)
*/
public final function addOptions(array $options) {
$this->config = $this
->optionsMerge($this->config, $options);
return $this;
}
/**
* Merge arrays with replace, not append.
*
* @see http://www.php.net/manual/en/function.array-merge-recursive.php#102379
*/
private function optionsMerge($Arr1, $Arr2) {
foreach ($Arr2 as $key => $Value) {
if (array_key_exists($key, $Arr1) && is_array($Value)) {
$Arr1[$key] = $this
->optionsMerge($Arr1[$key], $Arr2[$key]);
}
else {
$Arr1[$key] = $Value;
}
}
return $Arr1;
}
/**
* Handlers need to declare their defaults if they have a configuration form.
*/
protected function optionsDefinition() {
$options = array();
return $options;
}
/**
* Handlers can declare a form.
*/
public function optionsForm(&$form, &$form_state) {
}
/**
* Validate?
*/
public function optionsValidate(&$form, &$form_state) {
}
/**
* Save data somewhere.
*
* This can be overridden. For example, values stored in courseobject sessions
* need to have priority over those in the database.
*/
public function optionsSubmit(&$form, &$form_state) {
}
/**
* Return an array of database fields. This determines what fields should be
* serialized instead of stored.
*/
protected function getDatabaseFields() {
$schema = drupal_get_schema($this->table);
return array_keys($schema['fields']);
}
/**
* Return a list of warning strings about this handler.
*
* For example, if a user adds a quiz to a course with no questions, trigger a
* message.
*
* @see CourseObjectQuiz
* @see CourseObjectWebform
*/
public function getWarnings() {
return array();
}
/**
* Set an access message to be displayed along with the course object when it
* is in the outline. For example, "This activity will open on XYZ" or "Please
* complete Step 1 to take this activity."
*
* @param string $key
* Message key.
* @param string $message
* Message text.
*/
public function setAccessMessage($key = NULL, $message = NULL) {
if ($key == NULL) {
return $this->accessMessages;
}
elseif ($message != NULL) {
$this->accessMessages[$key] = $message;
}
}
/**
* Get an array of access messages.
*
* @return array
*/
public function getAccessMessages() {
return $this
->setAccessMessage();
}
public function save() {
$options = $this
->getOptions();
if (!isset($options['uuid'])) {
$options['uuid'] = uuid_uuid();
}
// Set up serialized field for non-schema fields.
$options[$this->serializedField] = array();
$dbfields = $this
->getDatabaseFields();
foreach ($options as $key => $value) {
if (array_search($key, $dbfields) === FALSE) {
$options[$this->serializedField][$key] = $value;
}
}
$keys = $this
->getId() ? array(
$this->primaryKey,
) : array();
drupal_write_record($this->table, $options, $keys);
$this
->setOptions($options);
return $this;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CourseHandler:: |
private | property | ||
CourseHandler:: |
protected | property | ||
CourseHandler:: |
public | property | ||
CourseHandler:: |
public | property | ||
CourseHandler:: |
public | property | ||
CourseHandler:: |
public | property | ||
CourseHandler:: |
final public | function | Merge an array of options onto the existing options. | |
CourseHandler:: |
public | function | Get an array of access messages. | |
CourseHandler:: |
protected | function | Return an array of database fields. This determines what fields should be serialized instead of stored. | |
CourseHandler:: |
function | |||
CourseHandler:: |
final public | function | Get an option stored in this CourseObject. | |
CourseHandler:: |
public | function | Get an object's configuration. | 1 |
CourseHandler:: |
public | function | Stub. Get the summary of an object's options. | 1 |
CourseHandler:: |
public | function | Return a list of warning strings about this handler. | 1 |
CourseHandler:: |
protected | function | Handlers need to declare their defaults if they have a configuration form. | 4 |
CourseHandler:: |
public | function | Handlers can declare a form. | 4 |
CourseHandler:: |
private | function | Merge arrays with replace, not append. | |
CourseHandler:: |
public | function | Save data somewhere. | 1 |
CourseHandler:: |
public | function | Validate? | 3 |
CourseHandler:: |
public | function | 2 | |
CourseHandler:: |
public | function | Set an access message to be displayed along with the course object when it is in the outline. For example, "This activity will open on XYZ" or "Please complete Step 1 to take this activity." | |
CourseHandler:: |
final public | function | Set an option for this handler. | |
CourseHandler:: |
final public | function | Set this entire handler's options. | |
CourseHandler:: |
function | 5 |