You are here

function CourseObjectNode::getNode in Course 7.2

Same name and namespace in other branches
  1. 7 includes/CourseObjectNode.inc \CourseObjectNode::getNode()
13 calls to CourseObjectNode::getNode()
CourseObjectNode::access in includes/CourseObjectNode.inc
Deny access to objects without content.
CourseObjectNode::freeze in includes/CourseObjectNode.inc
Freeze data to persist over cloning/exporting.
CourseObjectNode::getEditUrl in includes/CourseObjectNode.inc
Get the URL to edit this course object, if any.
CourseObjectNode::getTakeUrl in includes/CourseObjectNode.inc
Get the URL to take this course object, if any.
CourseObjectNode::getTitle in includes/CourseObjectNode.inc
Get the object title, or return this object's node's title if the option is set.

... See full list

File

includes/CourseObjectNode.inc, line 364

Class

CourseObjectNode
A course object that uses a node as a base.

Code

function getNode() {
  return node_load($this->instance);
}