function CourseObjectNode::getNode in Course 7
Same name and namespace in other branches
- 7.2 includes/CourseObjectNode.inc \CourseObjectNode::getNode()
6 calls to CourseObjectNode::getNode()
- CourseObjectNode::access in includes/
CourseObjectNode.inc - Deny access to objects without content.
- 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::getViewUrl in includes/
CourseObjectNode.inc - Get the URL to view this course object, if any.
- CourseObjectNode::getWarnings in includes/
CourseObjectNode.inc - Show a warning if this object has an instance, but the node does not exist.
File
- includes/
CourseObjectNode.inc, line 405
Class
- CourseObjectNode
- A course object that uses a node as a base.
Code
function getNode() {
return node_load($this->instance);
}