Esempio n. 1
0
 public function addTextBreak()
 {
     $textOfSameFormat = new TextOfSameFormat();
     $textOfSameFormat->setBreak();
     array_push($this->_text, $textOfSameFormat);
 }
Esempio n. 2
0
 public function addTable($styleTable = array())
 {
     echo 'add a table!!' . '<br />';
     $textOfSameFormat = new TextOfSameFormat();
     $textOfSameFormat->setTable($styleTable);
     $this->_tableNow = $textOfSameFormat;
     array_push($this->_paragrWithDiffStyle, $this->_tableNow);
 }