/** * Clean and test 'tablerow' parameter. * * @access public * @param string Options passed to parameter. * @return boolean Success */ public function _tablerow($option) { $option = Parse::replaceNewLines(trim($option)); if (empty($option)) { $this->setParameter('tablerow', []); } else { $this->setParameter('tablerow', explode(',', $option)); } return true; }