. /** * Library code used by the roles administration interfaces. * * @package core_role * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Subclass of core_role_capability_table_base for use on the Check permissions page. * * We have one additional column, Allowed, which contains yes/no. */ class core_role_check_capability_table extends core_role_capability_table_base { protected $user; protected $fullname; protected $contextname; protected $stryes; protected $strno; private $hascap; /** * Constructor * @param object $context the context this table relates to. * @param object $user the user we are generating the results for. * @param string $contextname $context->get_context_name() - to save recomputing. */ public function __construct($context, $user, $contextname) { parent::__construct($context, 'explaincaps'); $this->user = $user; $this->fullname = fullname($user); $this->contextname = $contextname; $this->stryes = get_string('yes'); $this->strno = get_string('no'); } protected function add_header_cells() { echo '