toObject()} instead * * @deprecated As of version 1.5 */ function toObject() { parent::toObject(); } /** * Legacy function, use {@link JParameter::toArray() JParameter->toArray()} instead * * @deprecated As of version 1.5 */ function toArray() { parent::toArray(); } /** * Parse an .ini string, based on phpDocumentor phpDocumentor_parse_ini_file function * * @access public * @param mixed The ini string or array of lines * @param boolean add an associative index for each section [in brackets] * @return object */ function parse($txt, $process_sections = false, $asArray = false) { $this->loadINI($txt); if($asArray) { return $this->toArray(); } return $this->toObject( ); } /** * Special handling for textarea param */ function textareaHandling( &$txt ) { $total = count( $txt ); for( $i=0; $i < $total; $i++ ) { if ( strstr( $txt[$i], "\n" ) ) { $txt[$i] = str_replace( "\n", '
', $txt[$i] ); } } $txt = implode( "\n", $txt ); return $txt; } }