getText() public method

Get plain text
public getText ( ) : string
return string
コード例 #1
0
 /**
  * Get text
  * @return string
  */
 protected function getText()
 {
     return !is_null($this->m_content) ? $this->m_content->getText() : null;
 }
コード例 #2
0
 /**
  * Get text
  * @return string
  */
 protected function getText()
 {
     $poi_text = !is_null($this->m_content) ? $this->m_content->getText() : null;
     return $poi_text;
 }