/branches/v1.6.6/Tests/08conditionalformatting.php

# · PHP · 161 lines · 82 code · 37 blank · 42 comment · 1 complexity · a03c92df479ca1797ad81063f9424167 MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (C) 2006 - 2009 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel
  23. * @copyright Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /** Error reporting */
  28. error_reporting(E_ALL);
  29. /** Include path **/
  30. set_include_path(get_include_path() . PATH_SEPARATOR . '../Classes/');
  31. /** PHPExcel */
  32. include 'PHPExcel.php';
  33. /** PHPExcel_IOFactory */
  34. include 'PHPExcel/IOFactory.php';
  35. // Create new PHPExcel object
  36. echo date('H:i:s') . " Create new PHPExcel object\n";
  37. $objPHPExcel = new PHPExcel();
  38. // Set properties
  39. echo date('H:i:s') . " Set properties\n";
  40. $objPHPExcel->getProperties()->setCreator("Maarten Balliauw");
  41. $objPHPExcel->getProperties()->setLastModifiedBy("Maarten Balliauw");
  42. $objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document");
  43. $objPHPExcel->getProperties()->setSubject("Office 2007 XLSX Test Document");
  44. $objPHPExcel->getProperties()->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.");
  45. $objPHPExcel->getProperties()->setKeywords("office 2007 openxml php");
  46. $objPHPExcel->getProperties()->setCategory("Test result file");
  47. // Create a first sheet, representing sales data
  48. echo date('H:i:s') . " Add some data\n";
  49. $objPHPExcel->setActiveSheetIndex(0);
  50. $objPHPExcel->getActiveSheet()->setCellValue('A1', 'Description');
  51. $objPHPExcel->getActiveSheet()->setCellValue('B1', 'Amount');
  52. $objPHPExcel->getActiveSheet()->setCellValue('A2', 'Paycheck received');
  53. $objPHPExcel->getActiveSheet()->setCellValue('B2', 100);
  54. $objPHPExcel->getActiveSheet()->setCellValue('A3', 'Cup of coffee bought');
  55. $objPHPExcel->getActiveSheet()->setCellValue('B3', -1.5);
  56. $objPHPExcel->getActiveSheet()->setCellValue('A4', 'Cup of coffee bought');
  57. $objPHPExcel->getActiveSheet()->setCellValue('B4', -1.5);
  58. $objPHPExcel->getActiveSheet()->setCellValue('A5', 'Cup of tea bought');
  59. $objPHPExcel->getActiveSheet()->setCellValue('B5', -1.2);
  60. $objPHPExcel->getActiveSheet()->setCellValue('A6', 'Found some money');
  61. $objPHPExcel->getActiveSheet()->setCellValue('B6', 8);
  62. $objPHPExcel->getActiveSheet()->setCellValue('A7', 'Total:');
  63. $objPHPExcel->getActiveSheet()->setCellValue('B7', '=SUM(B2:B6)');
  64. // Set column widths
  65. echo date('H:i:s') . " Set column widths\n";
  66. $objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(30);
  67. $objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(12);
  68. // Add conditional formatting
  69. echo date('H:i:s') . " Add conditional formatting\n";
  70. $objConditional1 = new PHPExcel_Style_Conditional();
  71. $objConditional1->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS);
  72. $objConditional1->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_BETWEEN);
  73. $objConditional1->addCondition('200');
  74. $objConditional1->addCondition('400');
  75. $objConditional1->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_YELLOW);
  76. $objConditional1->getStyle()->getFont()->setBold(true);
  77. $objConditional1->getStyle()->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE);
  78. $objConditional2 = new PHPExcel_Style_Conditional();
  79. $objConditional2->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS);
  80. $objConditional2->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_LESSTHAN);
  81. $objConditional2->addCondition('0');
  82. $objConditional2->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_RED);
  83. $objConditional2->getStyle()->getFont()->setBold(true);
  84. $objConditional2->getStyle()->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE);
  85. $objConditional3 = new PHPExcel_Style_Conditional();
  86. $objConditional3->setConditionType(PHPExcel_Style_Conditional::CONDITION_CELLIS);
  87. $objConditional3->setOperatorType(PHPExcel_Style_Conditional::OPERATOR_GREATERTHANOREQUAL);
  88. $objConditional3->addCondition('0');
  89. $objConditional3->getStyle()->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_GREEN);
  90. $objConditional3->getStyle()->getFont()->setBold(true);
  91. $objConditional3->getStyle()->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE);
  92. $conditionalStyles = $objPHPExcel->getActiveSheet()->getStyle('B2')->getConditionalStyles();
  93. array_push($conditionalStyles, $objConditional1);
  94. array_push($conditionalStyles, $objConditional2);
  95. array_push($conditionalStyles, $objConditional3);
  96. $objPHPExcel->getActiveSheet()->getStyle('B2')->setConditionalStyles($conditionalStyles);
  97. $objPHPExcel->getActiveSheet()->duplicateStyle( $objPHPExcel->getActiveSheet()->getStyle('B2'), 'B3:B7' );
  98. // Set fonts
  99. echo date('H:i:s') . " Set fonts\n";
  100. $objPHPExcel->getActiveSheet()->getStyle('A1')->getFont()->setBold(true);
  101. $objPHPExcel->getActiveSheet()->getStyle('B1')->getFont()->setBold(true);
  102. $objPHPExcel->getActiveSheet()->getStyle('A7')->getFont()->setBold(true);
  103. $objPHPExcel->getActiveSheet()->getStyle('B7')->getFont()->setBold(true);
  104. // Set header and footer. When no different headers for odd/even are used, odd header is assumed.
  105. echo date('H:i:s') . " Set header/footer\n";
  106. $objPHPExcel->getActiveSheet()->getHeaderFooter()->setOddHeader('&L&BPersonal cash register&RPrinted on &D');
  107. $objPHPExcel->getActiveSheet()->getHeaderFooter()->setOddFooter('&L&B' . $objPHPExcel->getProperties()->getTitle() . '&RPage &P of &N');
  108. // Set page orientation and size
  109. echo date('H:i:s') . " Set page orientation and size\n";
  110. $objPHPExcel->getActiveSheet()->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT);
  111. $objPHPExcel->getActiveSheet()->getPageSetup()->setPaperSize(PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4);
  112. // Rename sheet
  113. echo date('H:i:s') . " Rename sheet\n";
  114. $objPHPExcel->getActiveSheet()->setTitle('Invoice');
  115. // Set active sheet index to the first sheet, so Excel opens this as the first sheet
  116. $objPHPExcel->setActiveSheetIndex(0);
  117. // Save Excel 2007 file
  118. echo date('H:i:s') . " Write to Excel2007 format\n";
  119. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
  120. $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
  121. // Echo memory peak usage
  122. echo date('H:i:s') . " Peak memory usage: " . (memory_get_peak_usage(true) / 1024 / 1024) . " MB\r\n";
  123. // Echo done
  124. echo date('H:i:s') . " Done writing file.\r\n";