예제 #1
0
파일: Plain.php 프로젝트: robtuley/knotwerk
 /**
  * Returns original formatted full text.
  */
 function __toString()
 {
     $str = $this->getContent();
     $str .= parent::__toString();
     return $str;
 }
예제 #2
0
파일: Table.php 프로젝트: robtuley/knotwerk
 /**
  * Returns original formatted full text.
  */
 function __toString()
 {
     // @todo format table nicely
     return parent::__toString();
 }