123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- class PHPExcel_Writer_OpenDocument_Cell_Comment
- {
- public static function write(PHPExcel_Shared_XMLWriter $objWriter, PHPExcel_Cell $cell)
- {
- $comments = $cell->getWorksheet()->getComments();
- if (!isset($comments[$cell->getCoordinate()])) {
- return;
- }
- $comment = $comments[$cell->getCoordinate()];
- $objWriter->startElement('office:annotation');
-
-
- $objWriter->writeAttribute('svg:width', $comment->getWidth());
- $objWriter->writeAttribute('svg:height', $comment->getHeight());
- $objWriter->writeAttribute('svg:x', $comment->getMarginLeft());
- $objWriter->writeAttribute('svg:y', $comment->getMarginTop());
-
-
- $objWriter->writeElement('dc:creator', $comment->getAuthor());
-
-
- $objWriter->writeElement('text:p', $comment->getText()->getPlainText());
-
- $objWriter->endElement();
- }
- }
|