You are here

public function CourseObjectAccess::see in Course 7.2

Same name and namespace in other branches
  1. 6 includes/course.core.inc \CourseObjectAccess::see()
  2. 7 includes/CourseObjectAccess.inc \CourseObjectAccess::see()

Can the user see the object in the outline?

Parameters

type $account:

Return value

boolean

3 methods override CourseObjectAccess::see()
CourseObjectAccessConditional::see in plugins/course_object_access/conditional.inc
Can the user see the object in the outline?
CourseObjectAccessGrade::see in plugins/course_object_access/grade.inc
Can the user see the object in the outline?
CourseObjectAccessTiming::see in plugins/course_object_access/timing.inc
Can the user see the object in the outline?

File

includes/CourseObjectAccess.inc, line 67

Class

CourseObjectAccess
Access handler for CourseObjects.

Code

public function see($account) {
  return TRUE;
}