PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
classes
/
xliff
<?php abstract class WPML_TM_Xliff_Reader extends WPML_TM_Xliff_Shared { /** * @param string $content Xliff file string content * * @return array */ abstract public function get_data( $content ); /** * Parse a XML containing the XLIFF * * @param string $content * * @return SimpleXMLElement|WP_Error The parsed XLIFF or a WP error in case it could not be parsed */ public function load_xliff( $content ) { try { $xml = simplexml_load_string( $content ); } catch ( Exception $e ) { $xml = false; } return $xml ? $xml : new WP_Error( 'not_xml_file', sprintf( __( 'The xliff file could not be read.', 'wpml-translation-management' ) ) ); } }
[-] class-wpml-tm-validate-html.php
[edit]
[-] class-wpml-tm-xliff-translator-notes.php
[edit]
[-] wpml-tm-xliff.php
[edit]
[-] classs-wpml-tm-xliff-phase.php
[edit]
[-] class-wpml-tm-general-xliff-reader.php
[edit]
[-] class-wpml-tm-xliff-reader.php
[edit]
[-] class-wpml-tm-xliff-shared.php
[edit]
[-] class-wpml-tm-xliff-writer.php
[edit]
[-] class-wpml-tm-general-xliff-import.php
[edit]
[-] class-wpml-tm-xliff-reader-factory.php
[edit]
[-] class-wpml-tm-xliff-shortcodes.php
[edit]
[-] class-wpml-tm-string-xliff-reader.php
[edit]
[-] class-wpml-tm-xliff-factory.php
[edit]
[+]
..
[-] class-wpml-tm-xliff-post-type.php
[edit]
[-] class-wpml-tm-xliff-frontend.php
[edit]