linea21-utils
[ class tree: linea21-utils ] [ index: linea21-utils ] [ all elements ]

Source for file pdf.summary.php

Documentation is available at pdf.summary.php

  1. <?php
  2. /**
  3.  * @package linea21.utils
  4.  * @subpackage report_sdi
  5.  * @author linea21 <info@linea21.com>
  6.  * @version $id SVN
  7.  * @access public
  8.  * @license http://opensource.org/licenses/gpl-3.0.html
  9.  *  Define, compose and generate a SDI (Sustainable Development Indicators) PDF report
  10.  */
  11.  
  12. ///////////////////////////////////
  13. //    index - RAPPORT
  14. ///////////////////////////////////
  15.  
  16. $pdf->AddPage();
  17.  
  18. // add a new page for TOC
  19. $pdf->addTOCPage();
  20. $pdf->SetFont(DOC_POLICE'B'MIN_SIZE);
  21. $pdf->SetTextColorArray(getColor('DOC_COLOR_HEADER'));
  22. $pdf->MultiCell(00formatText($lang['dashboard']['rap_summary'])0'C'01''''true0);
  23. $pdf->Ln();
  24. $pdf->SetFont(DOC_POLICE''MIN_SIZE);
  25. $pdf->addTOC(2DOC_POLICE'.'formatText($lang['dashboard']['rap_summary'])'');
  26. // end of TOC page
  27. $pdf->endTOCPage();
  28. $pdf->SetTextColorArray(getColor('DOC_COLOR_HEADER'));
  29. ?>

Documentation generated on Thu, 03 May 2012 15:06:57 +0200 by phpDocumentor 1.4.1