Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
   1  <?php
   2  
   3  class HTMLPurifier_HTMLModule_Tidy_Proprietary extends HTMLPurifier_HTMLModule_Tidy
   4  {
   5  
   6      /**

   7       * @type string

   8       */
   9      public $name = 'Tidy_Proprietary';
  10  
  11      /**

  12       * @type string

  13       */
  14      public $defaultLevel = 'light';
  15  
  16      /**

  17       * @return array

  18       */
  19      public function makeFixes()
  20      {
  21          $r = array();
  22          $r['table@background'] = new HTMLPurifier_AttrTransform_Background();
  23          $r['td@background']    = new HTMLPurifier_AttrTransform_Background();
  24          $r['th@background']    = new HTMLPurifier_AttrTransform_Background();
  25          $r['tr@background']    = new HTMLPurifier_AttrTransform_Background();
  26          $r['thead@background'] = new HTMLPurifier_AttrTransform_Background();
  27          $r['tfoot@background'] = new HTMLPurifier_AttrTransform_Background();
  28          $r['tbody@background'] = new HTMLPurifier_AttrTransform_Background();
  29          $r['table@height']     = new HTMLPurifier_AttrTransform_Length('height');
  30          return $r;
  31      }
  32  }
  33  
  34  // vim: et sw=4 sts=4