You are here

public function CourseHandler::getOptions in Course 7

Same name and namespace in other branches
  1. 6 includes/course.core.inc \CourseHandler::getOptions()
  2. 7.2 includes/CourseHandler.inc \CourseHandler::getOptions()

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 value

array

4 calls to CourseHandler::getOptions()
CourseHandler::addOptions in includes/CourseHandler.inc
Merge an array of options onto the existing options.
CourseHandler::getOption in includes/CourseHandler.inc
Get an handler option's value.
CourseHandler::save in includes/CourseHandler.inc
Permanently saves the entity.
CourseObject::getOptions in includes/CourseObject.inc
Get options, with session options, except weight, having precedence.
1 method overrides CourseHandler::getOptions()
CourseObject::getOptions in includes/CourseObject.inc
Get options, with session options, except weight, having precedence.

File

includes/CourseHandler.inc, line 50

Class

CourseHandler
Master class for anything Course related.

Code

public function getOptions() {
  return get_object_vars($this);
}