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.

Differences Between: [Versions 400 and 401] [Versions 401 and 402] [Versions 401 and 403]

   1  <?php
   2  
   3  namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx;
   4  
   5  class Namespaces
   6  {
   7      const SCHEMAS = 'http://schemas.openxmlformats.org';
   8  
   9      const RELATIONSHIPS = 'http://schemas.openxmlformats.org/package/2006/relationships';
  10  
  11      // This one used in Reader\Xlsx
  12      const CORE_PROPERTIES = 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties';
  13  
  14      // This one used in Reader\Xlsx\Properties
  15      const CORE_PROPERTIES2 = 'http://schemas.openxmlformats.org/package/2006/metadata/core-properties';
  16  
  17      const THUMBNAIL = 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail';
  18  
  19      const THEME = 'http://schemas.openxmlformats.org/package/2006/relationships/theme';
  20  
  21      const COMPATIBILITY = 'http://schemas.openxmlformats.org/markup-compatibility/2006';
  22  
  23      const MAIN = 'http://schemas.openxmlformats.org/spreadsheetml/2006/main';
  24  
  25      const DRAWINGML = 'http://schemas.openxmlformats.org/drawingml/2006/main';
  26  
  27      const CHART = 'http://schemas.openxmlformats.org/drawingml/2006/chart';
  28  
  29      const SPREADSHEET_DRAWING = 'http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing';
  30  
  31      const SCHEMA_OFFICE_DOCUMENT = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships';
  32  
  33      const COMMENTS = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments';
  34  
  35      //const CUSTOM_PROPERTIES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties';
  36  
  37      //const EXTENDED_PROPERTIES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties';
  38  
  39      const HYPERLINK = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink';
  40  
  41      const OFFICE_DOCUMENT = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument';
  42  
  43      const SHARED_STRINGS = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings';
  44  
  45      const STYLES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles';
  46  
  47      const IMAGE = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image';
  48  
  49      const VML = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing';
  50  
  51      const WORKSHEET = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet';
  52  
  53      const CHARTSHEET = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/chartsheet';
  54  
  55      const SCHEMA_MICROSOFT = 'http://schemas.microsoft.com/office/2006/relationships';
  56  
  57      const EXTENSIBILITY = 'http://schemas.microsoft.com/office/2006/relationships/ui/extensibility';
  58  
  59      const VBA = 'http://schemas.microsoft.com/office/2006/relationships/vbaProject';
  60  
  61      const DC_ELEMENTS = 'http://purl.org/dc/elements/1.1/';
  62  
  63      const DC_TERMS = 'http://purl.org/dc/terms';
  64  
  65      const URN_MSOFFICE = 'urn:schemas-microsoft-com:office:office';
  66  
  67      const URN_VML = 'urn:schemas-microsoft-com:vml';
  68  
  69      const SCHEMA_PURL = 'http://purl.oclc.org/ooxml';
  70  
  71      const PURL_OFFICE_DOCUMENT = 'http://purl.oclc.org/ooxml/officeDocument/relationships/officeDocument';
  72  
  73      const PURL_RELATIONSHIPS = 'http://purl.oclc.org/ooxml/officeDocument/relationships';
  74  
  75      const PURL_MAIN = 'http://purl.oclc.org/ooxml/spreadsheetml/main';
  76  
  77      const PURL_DRAWING = 'http://purl.oclc.org/ooxml/drawingml/main';
  78  
  79      const PURL_CHART = 'http://purl.oclc.org/ooxml/drawingml/chart';
  80  
  81      const PURL_WORKSHEET = 'http://purl.oclc.org/ooxml/officeDocument/relationships/worksheet';
  82  }