You are here

function CourseController::load in Course 7

Same name and namespace in other branches
  1. 7.2 includes/CourseController.inc \CourseController::load()

Overridden.

In contrast to the parent implementation we factor out query execution, so fetching can be further customized easily.

Overrides EntityAPIController::load

See also

DrupalDefaultEntityController#load($ids, $conditions)

File

includes/CourseController.inc, line 5

Class

CourseController

Code

function load($ids = array(), $conditions = array()) {
  $entities = parent::load($ids, $conditions);
  return $entities;
}