addSection() public method

adds section to rtf document
public addSection ( PHPRtfLite_Container_Section $section = null ) : PHPRtfLite_Container_Section
$section PHPRtfLite_Container_Section
return PHPRtfLite_Container_Section
Ejemplo n.º 1
1
 public function testWriteRtfCode()
 {
     $section = $this->_rtf->addSection();
     $section->writeRtfCode('This is a Unit Test text!');
     $this->assertEquals(1, $section->countElements());
 }
Ejemplo n.º 2
0
 /**
  * tests addSection
  * @covers PHPRtfLite::getSections
  */
 public function testAddSection()
 {
     $section = $this->_rtf->addSection();
     $this->assertInstanceOf('PHPRtfLite_Container_Section', $section);
     $this->_rtf->addSection(new PHPRtfLite_Container_Section($this->_rtf));
     $this->assertEquals(2, count($this->_rtf->getSections()));
 }
Ejemplo n.º 3
0
 /**
  * tests setBorder on cell 1x1
  *
  * @param  PHPRtfLite_Table $table
  * @return PHPRtfLite_Table
  */
 public function testSetBorderForCellWithRow1Column1()
 {
     $rtf = new PHPRtfLite();
     $section = $rtf->addSection();
     $table = $section->addTable();
     // creating cells (2 rows x 2 columns)
     $table->addRowList(array(2, 2));
     $table->addColumnsList(array(7, 7));
     $border = new PHPRtfLite_Border($table->getRtf());
     $border->setBorders(new PHPRtfLite_Border_Format(1, '#000'));
     $cell1x1 = $table->getCell(1, 1);
     $cell1x2 = $table->getCell(1, 2);
     $cell2x1 = $table->getCell(2, 1);
     $cell1x1->setBorder($border);
     $this->assertEquals('#000', $cell1x1->getBorder()->getBorderRight()->getColor());
     $this->assertEquals('#000', $cell1x2->getBorder()->getBorderLeft()->getColor());
     $this->assertEquals('#000', $cell2x1->getBorder()->getBorderTop()->getColor());
     return $table;
 }
Ejemplo n.º 4
0
 function Generate_Content()
 {
     PHPRtfLite::registerAutoloader();
     $largerFont = new PHPRtfLite_Font(16, 'Courier New');
     $largerFont->setBold();
     $smallerFont = new PHPRtfLite_Font(12, 'Times New Roman');
     $tableFont = new PHPRtfLite_Font(10, 'Courier New');
     //Izveido pašu dokumentu
     $rtf = new PHPRtfLite();
     $parHead = new PHPRtfLite_ParFormat();
     $parHead->setSpaceBefore(3);
     $parHead->setSpaceAfter(8);
     $parBody = new PHPRtfLite_ParFormat();
     $parBody->setSpaceBefore(1);
     //Izveido pirmo sekciju
     $sect =& $rtf->addSection();
     $sect->writeText("Atzīmju izraksts", $largerFont, $parHead);
     $sect->writeText("Skolnieks: " . $this->studentName, $smallerFont, $parHead);
     for ($i = 0; $i < count($this->grades); $i++) {
         $grade = $this->grades[$i];
         $sect->writeText(sprintf("%s  %s  %s", $grade["date"], $grade["lesson"], $grade["grade"]), $tableFont, $parBody);
     }
     $this->fileContents = $rtf;
 }
Ejemplo n.º 5
0
        $fontFooter = new PHPRtfLite_Font(8, 'Arial', '#000000');
        $alignFooter = new PHPRtfLite_ParFormat(PHPRtfLite_ParFormat::TEXT_ALIGN_CENTER);
        $footer->writeText('Used cars for sale - <pagenum>', $fontFooter, $alignFooter);
        // Определить шрифты
        $fontH1 = new PHPRtfLite_Font(16, 'Arial', '#4E9C93');
        $fontH2 = new PHPRtfLite_Font(14, 'Arial', '#4E9C93');
        $fontP = new PHPRtfLite_Font(12, 'Helvetica', '#000000');
        // Вертикальное форматирование текста
        $formatH1 = new PHPRtfLite_ParFormat();
        $formatH1->setSpaceAfter(8);
        $formatH2 = new PHPRtfLite_ParFormat();
        $formatH2->setSpaceAfter(6);
        $formatP = new PHPRtfLite_ParFormat();
        $formatP->setSpaceAfter(3);
        // Содержание страницы
        $section = $rtf->addSection();
        $section->writeText('Used Cars for Sale', $fontH1, $formatH1);
        while ($row = getRow($result)) {
            $section->writeText($row['make'], $fontH2, $formatH2);
            $section->setNoBreak();
            $section->writeText('<bullet> Price: $' . number_format($row['price'], 2), $fontP, $formatP);
            $section->writeText('<bullet> Mileage: ' . number_format($row['mileage']), $fontP, $formatP);
            $section->writeText('<bullet> Transmission: ' . $row['transmission'], $fontP, $formatP);
            $section->writeText($row['description'] . '<hr>', $fontP, $formatP);
        }
        // Выходной файл
        $rtf->sendRtf('cars.rtf');
    } catch (Exception $e) {
        $error = $e->getMessage();
    }
}
Ejemplo n.º 6
0
<?php

$dir = dirname(__FILE__);
$jpeg = $dir . '/sources/rtf_thumb.jpg';
$png = $dir . '/sources/html.png';
$wmf = $dir . '/sources/test.wmf';
require_once $dir . '/../lib/PHPRtfLite.php';
// register PHPRtfLite class loader
PHPRtfLite::registerAutoloader();
// rtf document
$rtf = new PHPRtfLite();
$sect = $rtf->addSection();
$sect->writeText('Images (as files) with PHPRtfLite.');
$table = $sect->addTable();
$table->addRows(4);
$table->addColumnsList(array(4, 4));
$table->writeToCell(1, 1, 'JPEG');
$table->addImageToCell(1, 2, $jpeg);
$table->writeToCell(2, 1, 'PNG');
$table->addImageToCell(2, 2, $png);
$table->writeToCell(3, 1, 'WMF');
$table->addImageToCell(3, 2, $wmf, null, 4);
$missingImage = '/some/image/that/does/not/!exist!.png';
$table->writeToCell(4, 1, 'Missing image or not readable');
$table->addImageToCell(4, 2, $missingImage);
$sect = $rtf->addSection();
$sect->writeText('Images (as strings) with PHPRtfLite.');
$table = $sect->addTable();
$table->addRows(3);
$table->addColumnsList(array(4, 4));
$table->getCell(1, 1)->writeText('JPEG');
Ejemplo n.º 7
0
    	}*/
    /*$project_id = $_GET["project_id"];
    	$ps_id = $_GET["ps_id"];
    	
    	$qup = mysql_query("select * from t_project where project_id = $project_id");
    	$project_info = mysql_fetch_object($qup);
    	
    	$qup = mysql_query("select *,date_format(ps_test_tanggal,'%d-%b-%Y') ps_test_tanggal2 from t_project_source where ps_id = $ps_id");
    	$project_source_info = mysql_fetch_object($qup);*/
}
// Init
$null = null;
PHPRtfLite::registerAutoloader();
$parFormat = new PHPRtfLite_ParFormat();
$rtf = new PHPRtfLite();
//setLandscape()
$rtf->setLandscape();
//$rtf->setMargins(3,2,3,2);
//_createHeader($project_info);
$rtf->setMargins(3, 2, 3, 2);
$sect =& $rtf->addSection();
//_createTitle($project_info);
_createTable();
//
/*$sect = &$rtf->addSection();
	_createTable(3,3);
	//
	$sect = &$rtf->addSection();
	_createUraian();*/
$namafile = "Schedule.rtf";
$rtf->sendRtf($namafile);
Ejemplo n.º 8
0
 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  */
 protected function setUp()
 {
     $rtf = new PHPRtfLite();
     $this->_table = $rtf->addSection()->addTable();
 }