[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @file 4 * @author Niklas Laxström 5 * @license GPL-2.0+ 6 */ 7 8 /** 9 * Interface for file readers. 10 */ 11 interface LU_Reader { 12 /** 13 * Returns a list of messages indexed by language code. Example 14 * array( 'en' => array( 'key' => 'value' ) ); 15 * @param string $contents File contents as a string. 16 * @return array 17 */ 18 public function parse( $contents ); 19 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |