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  // 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   * This script produces sample Excel and ODF spreadsheets.
  19   *
  20   * @package    core
  21   * @copyright  2013 Petr Skoda {@link http://skodak.org}
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  require(__DIR__ . '/../../../config.php');
  26  require_once($CFG->libdir . '/excellib.class.php');
  27  require_once($CFG->libdir . '/odslib.class.php');
  28  
  29  $context = context_system::instance();
  30  $PAGE->set_url('/lib/tests/other/spreadsheettestpage.php');
  31  $PAGE->set_context($context);
  32  
  33  require_login();
  34  require_capability('moodle/site:config', $context);
  35  
  36  $type = optional_param('type', '', PARAM_ALPHANUM);
  37  
  38  if (!in_array($type, array('xslx', 'ods'))) {
  39      $type = '';
  40  }
  41  
  42  if (!$type) {
  43      $PAGE->set_title('Moodle spreadsheet export test');
  44      $PAGE->set_heading('Moodle spreadsheet export test');
  45  
  46      echo $OUTPUT->header();
  47      echo $OUTPUT->box_start();
  48  
  49      $notes = '
  50  Tested with:
  51  
  52  * MS Excel Viewer 2003 (with Compatibility Pack), 2010
  53  * LibreOffice 6.0
  54  * NeoOffice 3.3
  55  * Apple Numbers \'09 (2.3) and Preview
  56  * Google Drive spreadsheet import
  57  * IBM Lotus Symphony 3.0.1
  58  * Gnumeric 1.11
  59  * Calligra Suite 2.4, 2.5
  60  
  61  Known problems:
  62  
  63  * Excel 2007 can not be opened in Calligra Suite
  64  ';
  65  
  66      echo markdown_to_html($notes);
  67      echo $OUTPUT->box_end();
  68      echo $OUTPUT->single_button(new moodle_url($PAGE->url, array('type' => 'xslx')), 'Test Excel format');
  69      echo $OUTPUT->single_button(new moodle_url($PAGE->url, array('type' => 'ods')), 'Test ODS format');
  70      echo $OUTPUT->footer();
  71      die;
  72  }
  73  
  74  if ($type === 'xslx') {
  75      $workbook = new MoodleExcelWorkbook('moodletest.xlsx', 'Xslx');
  76  } else if ($type === 'ods') {
  77      $workbook = new MoodleODSWorkbook('moodletest.ods');
  78  }
  79  
  80  $worksheet = array();
  81  
  82  $worksheet = $workbook->add_worksheet('Supported');
  83  
  84  $worksheet->hide_screen_gridlines();
  85  
  86  $worksheet->write_string(0, 0, 'Moodle worksheet export test',
  87      $workbook->add_format(array('color' => 'red', 'size' => 20, 'bold' => 1, 'italic' => 1)));
  88  $worksheet->set_row(0, 25);
  89  $worksheet->write(1, 0, 'Moodle release: '.$CFG->release, $workbook->add_format(array('size' => 8, 'italic' => 1)));
  90  
  91  $worksheet->set_column(0, 0, 20);
  92  $worksheet->set_column(1, 1, 30);
  93  $worksheet->set_column(2, 2, 5);
  94  $worksheet->set_column(3, 3, 30);
  95  $worksheet->set_column(4, 4, 20);
  96  
  97  $miniheading = $workbook->add_format(array('size' => 15, 'bold' => 1, 'italic' => 1, 'underline' => 1));
  98  
  99  
 100  $worksheet->write(2, 0, 'Cell types', $miniheading);
 101  $worksheet->set_row(2, 20);
 102  $worksheet->set_row(3, 5);
 103  
 104  $worksheet->write(4, 0, 'String');
 105  $worksheet->write_string(4, 1, 'Žluťoučký koníček');
 106  
 107  $worksheet->write(5, 0, 'Number as string');
 108  $worksheet->write_string(5, 1, 3.14159);
 109  
 110  $worksheet->write(6, 0, 'Integer');
 111  $worksheet->write_number(6, 1, 666);
 112  
 113  $worksheet->write(7, 0, 'Float');
 114  $worksheet->write_number(7, 1, 3.14159);
 115  
 116  $worksheet->write(8, 0, 'URL');
 117  $worksheet->write_url(8, 1, 'http://moodle.org');
 118  
 119  $worksheet->write(9, 0, 'Date (now)');
 120  $worksheet->write_date(9, 1, time());
 121  
 122  $worksheet->write(10, 0, 'Formula');
 123  $worksheet->write(10, 1, '=1+2');
 124  
 125  $worksheet->write(11, 0, 'Blank');
 126  $worksheet->write_blank(11, 1, $workbook->add_format(array('bg_color' => 'silver')));
 127  
 128  
 129  $worksheet->write(14, 0, 'Text formats', $miniheading);
 130  $worksheet->set_row(14, 20);
 131  $worksheet->set_row(15, 5);
 132  
 133  // Following writes use alternative format array.
 134  $worksheet->write(16, 0, 'Bold', array('bold' => 1));
 135  $worksheet->write(17, 0, 'Italic', array('italic' => 1));
 136  $worksheet->write(18, 0, 'Single underline', array('underline' => 1));
 137  $worksheet->write(19, 0, 'Double underline', array('underline' => 2));
 138  $worksheet->write(20, 0, 'Strikeout', array('strikeout' => 1));
 139  $worksheet->write(21, 0, 'Superscript', array('script' => 1));
 140  $worksheet->write(22, 0, 'Subscript', array('script' => 2));
 141  $worksheet->write(23, 0, 'Red', array('color' => 'red'));
 142  
 143  
 144  $worksheet->write(25, 0, 'Text align', $miniheading);
 145  $worksheet->set_row(25, 20);
 146  $worksheet->set_row(26, 5);
 147  
 148  $worksheet->write(27, 0, 'Wrapped text - Žloťoučký koníček',
 149      $workbook->add_format(array('text_wrap' => true, 'border' => 1)));
 150  $worksheet->set_row(27, 30);
 151  $worksheet->write(27, 1, 'All centered',
 152      $workbook->add_format(array('v_align' => 'center', 'h_align' => 'center', 'border' => 1)));
 153  $worksheet->write(28, 0, 'Top', $workbook->add_format(array('align' => 'top', 'border' => 1)));
 154  $worksheet->set_row(28, 25);
 155  $worksheet->write(29, 0, 'Vcenter', $workbook->add_format(array('align' => 'vcenter', 'border' => 1)));
 156  $worksheet->set_row(29, 25);
 157  $worksheet->write(30, 0, 'Bottom', $workbook->add_format(array('align' => 'bottom', 'border' => 1)));
 158  $worksheet->set_row(30, 25);
 159  $worksheet->write(28, 1, 'Left', $workbook->add_format(array('align' => 'left', 'border' => 1)));
 160  $worksheet->write(29, 1, 'Center', $workbook->add_format(array('align' => 'center', 'border' => 1)));
 161  $worksheet->write(30, 1, 'Right', $workbook->add_format(array('align' => 'right', 'border' => 1)));
 162  
 163  $worksheet->write(32, 0, 'Number formats', $miniheading);
 164  $worksheet->set_row(32, 20);
 165  $worksheet->set_row(33, 5);
 166  
 167  $worksheet->write_string(34, 0, '1: 0');
 168  $worksheet->write_number(34, 1, 1003.14159, array('num_format' => 1));
 169  $worksheet->write_string(35, 0, '2: 0.00');
 170  $worksheet->write_number(35, 1, 1003.14159, array('num_format' => 2));
 171  $worksheet->write_string(36, 0, '3: #,##0');
 172  $worksheet->write_number(36, 1, 1003.14159, array('num_format' => 3));
 173  $worksheet->write_string(37, 0, '3: #,##0.00');
 174  $worksheet->write_number(37, 1, 1003.14159, array('num_format' => 4));
 175  $worksheet->write_string(38, 0, '11: 0.00E+00');
 176  $worksheet->write_number(38, 1, 3.14159, array('num_format' => 11));
 177  $worksheet->write_string(39, 0, '12: # ?/?');
 178  $worksheet->write_number(39, 1, 3.14, array('num_format' => 12));
 179  $worksheet->write_string(40, 0, '13: # ??/??');
 180  $worksheet->write_number(40, 1, 3.14, array('num_format' => 13));
 181  $worksheet->write_string(41, 0, '15: d-mmm-yy');
 182  $worksheet->write_date(41, 1, time(), array('num_format' => 15));
 183  $worksheet->write_string(42, 0, '22: m/d/yy h:mm');
 184  $worksheet->write_date(42, 1, time(), array('num_format' => 22));
 185  
 186  
 187  
 188  $worksheet->write(2, 3, 'Borders', $miniheading);
 189  
 190  $worksheet->write(4, 3, 'Left', $workbook->add_format(array('left' => '1')));
 191  $worksheet->write(6, 3, 'Bottom', $workbook->add_format(array('bottom' => '1')));
 192  $worksheet->write(8, 3, 'Right', $workbook->add_format(array('right' => '1')));
 193  $worksheet->write(10, 3, 'Top', $workbook->add_format(array('top' => '1')));
 194  $worksheet->write(12, 3, 'Thick borders', $workbook->add_format(array('border' => '2')));
 195  
 196  
 197  $worksheet->write(14, 3, 'Background colours', $miniheading);
 198  
 199  $worksheet->write(16, 3, 'Yellow', $workbook->add_format(array('bg_color' => 'yellow')));
 200  $worksheet->write(17, 3, 'Red', $workbook->add_format(array('bg_color' => 'red')));
 201  $worksheet->write(18, 3, 'Green', $workbook->add_format(array('bg_color' => 'green')));
 202  $worksheet->write(19, 3, 'Blue', $workbook->add_format(array('bg_color' => 12)));
 203  $worksheet->write(20, 3, 'Cyan', $workbook->add_format(array('bg_color' => '#00FFFF')));
 204  
 205  
 206  $worksheet->write(25, 3, 'Cell merging', $miniheading);
 207  
 208  $worksheet->merge_cells(27, 3, 28, 3);
 209  $worksheet->write(27, 3, 'Vertical merging of cells', $workbook->add_format(array('bg_color' => 'silver')));
 210  
 211  $worksheet->merge_cells(30, 3, 30, 4);
 212  $worksheet->write(30, 3, 'Horizontal merging of cells',
 213      $workbook->add_format(array('pattern' => 1, 'bg_color' => 'silver')));
 214  $worksheet->set_column(4, 4, 5);
 215  
 216  $worksheet->set_row(44, null, null, true);
 217  $worksheet->write(44, 0, 'Hidden row', array('bg_color' => 'yellow'));
 218  
 219  $worksheet->set_column(5, 5, null, null, true);
 220  $worksheet->write(0, 5, 'Hidden column', array('bg_color' => 'yellow'));
 221  
 222  
 223  $worksheet->write(45, 0, 'Outline row 1');
 224  $worksheet->set_row(45, null, null, false, 1);
 225  $worksheet->write(46, 0, 'Outline row 2');
 226  $worksheet->set_row(46, null, null, false, 2);
 227  
 228  $worksheet->write(0, 6, 'Outline column 1');
 229  $worksheet->set_column(6, 6, 20, null, false, 1);
 230  $worksheet->write(0, 7, 'Outline column 2');
 231  $worksheet->set_column(7, 7, 20, null, false, 2);
 232  
 233  
 234  
 235  // Some unfinished stuff.
 236  
 237  $worksheet2 = $workbook->add_worksheet('Unsupported');
 238  $worksheet2->write(0, 0, 'Incomplete and missing features',
 239      $workbook->add_format(array('size' => 20, 'bold' => 1, 'italic' => 1)));
 240  $worksheet2->set_row(0, 25);
 241  $worksheet2->set_column(1, 1, 25);
 242  
 243  $worksheet2->write(3, 1, 'Gray row - buggy');
 244  $worksheet2->set_row(3, null, array('bg_color' => 'silver'));
 245  $worksheet2->write(2, 6, 'Gray column - buggy');
 246  $worksheet2->set_column(6, 6, 20, array('bg_color' => 'silver'));
 247  
 248  $worksheet2->hide_gridlines();
 249  
 250  $worksheet2->write(5, 0, 'Outline text - not implemented', array('outline' => 1));
 251  $worksheet2->write(6, 0, 'Shadow text - not implemented', array('outline' => 1));
 252  
 253  $worksheet2->write(8, 0, 'Pattern 1');
 254  $worksheet2->write_blank(8, 1, array('pattern' => 1));
 255  $worksheet2->write(9, 0, 'Pattern 2');
 256  $worksheet2->write_blank(9, 1, array('pattern' => 2));
 257  $worksheet2->write(10, 0, 'Pattern 3');
 258  $worksheet2->write_blank(10, 1, array('pattern' => 3));
 259  
 260  
 261  // Other worksheet tests follow.
 262  
 263  $worksheet3 = $workbook->add_worksheet('Žlutý:koníček?přeskočil mrňavoučký potůček');
 264  $worksheet3->write(1, 0, 'Test long Unicode worksheet name.');
 265  
 266  
 267  $worksheet4 = $workbook->add_worksheet('');
 268  $worksheet4->write(1, 0, 'Test missing worksheet name.');
 269  
 270  $workbook->close();
 271  die;