12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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();
- }
- }
|