Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.
   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Fake component for testing
  19   *
  20   * @package    core
  21   * @copyright  2022 Laurent David <laurent.david@moodle.com>
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  defined('MOODLE_INTERNAL') || die();
  26  
  27  // Fake capabilities.
  28  $capabilities = [
  29      'fake/access:fakecapability' => [
  30          'riskbitmask' => RISK_SPAM | RISK_PERSONAL | RISK_XSS | RISK_CONFIG | RISK_DATALOSS,
  31          'captype' => 'write',
  32          'contextlevel' => CONTEXT_SYSTEM,
  33          'archetypes' => [
  34              'user' => CAP_ALLOW
  35          ]
  36      ],
  37      'fake/access:existingcapability' => [
  38          'riskbitmask' => RISK_SPAM | RISK_PERSONAL | RISK_XSS | RISK_CONFIG | RISK_DATALOSS,
  39          'captype' => 'write',
  40          'contextlevel' => CONTEXT_SYSTEM,
  41          'archetypes' => [
  42              'manager' => CAP_ALLOW
  43          ]
  44      ],
  45      'fake/access:replacementnoinfo' => [
  46          'riskbitmask' => RISK_SPAM | RISK_PERSONAL | RISK_XSS | RISK_CONFIG | RISK_DATALOSS,
  47          'captype' => 'write',
  48          'contextlevel' => CONTEXT_SYSTEM,
  49          'archetypes' => [
  50              'user' => CAP_ALLOW
  51          ]
  52      ],
  53      'fake/access:replacementmissing' => [
  54          'riskbitmask' => RISK_SPAM | RISK_PERSONAL | RISK_XSS | RISK_CONFIG | RISK_DATALOSS,
  55          'captype' => 'write',
  56          'contextlevel' => CONTEXT_SYSTEM,
  57          'archetypes' => [
  58              'user' => CAP_ALLOW
  59          ]
  60      ],
  61      'fake/access:replacementwithwrongcapability' => [
  62          'riskbitmask' => RISK_SPAM | RISK_PERSONAL | RISK_XSS | RISK_CONFIG | RISK_DATALOSS,
  63          'captype' => 'write',
  64          'contextlevel' => CONTEXT_SYSTEM,
  65          'archetypes' => [
  66              'user' => CAP_ALLOW
  67          ]
  68      ],
  69  ];
  70  
  71  // Deprecated capabilities - MDL-55580.
  72  $deprecatedcapabilities = [
  73      'fake/access:fakecapability' => ['replacement' => '', 'message' => 'This capability should not be used anymore.'],
  74      'fake/access:replacementmissing' => ['message' => 'This capability should not be used anymore.'],
  75      'fake/access:replacementnoinfo' => [],
  76      'fake/access:replacementwithwrongcapability' => ['replacement' => 'fake/access:nonexistingcapabilty',
  77          'message' => 'This capability should not be used anymore.'],
  78      'fake/access:replacementwithexisting' => ['replacement' => 'fake/access:existingcapability',
  79          'message' => 'This capability should not be used anymore.'],
  80  ];