Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

Differences Between: [Versions 310 and 400] [Versions 39 and 400]

(no description)

File Size: 337 lines (11 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class


Class: WorkbookManagerAbstract  - X-Ref

Class WorkbookManagerAbstract
Abstract workbook manager, providing the generic interfaces to work with workbook.

__construct(Workbook $workbook,OptionsManagerInterface $optionsManager,WorksheetManagerInterface $worksheetManager,StyleManagerInterface $styleManager,StyleMerger $styleMerger,FileSystemWithRootFolderHelperInterface $fileSystemHelper,InternalEntityFactory $entityFactory,ManagerFactoryInterface $managerFactory)   X-Ref

param: Workbook $workbook
param: OptionsManagerInterface $optionsManager
param: WorksheetManagerInterface $worksheetManager
param: StyleManagerInterface $styleManager
param: StyleMerger $styleMerger
param: FileSystemWithRootFolderHelperInterface $fileSystemHelper
param: InternalEntityFactory $entityFactory
param: ManagerFactoryInterface $managerFactory

getWorkbook()   X-Ref

return: Workbook

addNewSheetAndMakeItCurrent()   X-Ref
Creates a new sheet in the workbook and make it the current sheet.
The writing will resume where it stopped (i.e. data won't be truncated).

return: Worksheet The created sheet

addNewSheet()   X-Ref
Creates a new sheet in the workbook. The current sheet remains unchanged.

return: Worksheet The created sheet

getWorksheets()   X-Ref

return: Worksheet[] All the workbook's sheets

getCurrentWorksheet()   X-Ref
Returns the current sheet

return: Worksheet The current sheet

setCurrentSheet(Sheet $sheet)   X-Ref
Sets the given sheet as the current one. New data will be written to this sheet.
The writing will resume where it stopped (i.e. data won't be truncated).

return: void
param: Sheet $sheet The "external" sheet to set as current

setCurrentWorksheet($worksheet)   X-Ref

return: void
param: Worksheet $worksheet

getWorksheetFromExternalSheet($sheet)   X-Ref
Returns the worksheet associated to the given external sheet.

return: Worksheet|null The worksheet associated to the given external sheet or null if not found.
param: Sheet $sheet

addRowToCurrentWorksheet(Row $row)   X-Ref
Adds a row to the current sheet.
If shouldCreateNewSheetsAutomatically option is set to true, it will handle pagination
with the creation of new worksheets if one worksheet has reached its maximum capicity.

return: void
param: Row $row The row to be added

hasCurrentWorksheetReachedMaxRows()   X-Ref

return: bool Whether the current worksheet has reached the maximum number of rows per sheet.

addRowToWorksheet(Worksheet $worksheet, Row $row)   X-Ref
Adds a row to the given sheet.

return: void
param: Worksheet $worksheet Worksheet to write the row to
param: Row $row The row to be added

applyDefaultRowStyle(Row $row)   X-Ref

param: Row $row

close($finalFilePointer)   X-Ref
Closes the workbook and all its associated sheets.
All the necessary files are written to disk and zipped together to create the final file.
All the temporary files are then deleted.

return: void
param: resource $finalFilePointer Pointer to the spreadsheet that will be created

closeRemainingObjects()   X-Ref
Closes custom objects that are still opened

return: void

closeAllWorksheets()   X-Ref
Closes all workbook's associated sheets.

return: void

cleanupTempFolder()   X-Ref
Deletes the root folder created in the temp folder and all its contents.

return: void