You are here

public function CourseObjectNode::hasNodePrivacySupport in Course 6

Same name and namespace in other branches
  1. 7.2 includes/CourseObjectNode.inc \CourseObjectNode::hasNodePrivacySupport()
  2. 7 includes/CourseObjectNode.inc \CourseObjectNode::hasNodePrivacySupport()
4 calls to CourseObjectNode::hasNodePrivacySupport()
CourseObjectNode::grant in includes/course_object.core.inc
Grant access to course content before going to it.
CourseObjectNode::optionsForm in includes/course_object.core.inc
Default options form for all course objects.
CourseObjectNode::revoke in includes/course_object.core.inc
Duration expired (or something) - CourseObject is telling us so.
CourseObjectNode::save in includes/course_object.core.inc
On object write, set privacy on this node.

File

includes/course_object.core.inc, line 1076

Class

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

Code

public function hasNodePrivacySupport() {
  return module_exists('content_access') && module_exists('acl');
}