[ Index ]

PHP Cross Reference of MediaWiki-1.24.0

title

Body

[close]

/extensions/LocalisationUpdate/reader/ -> Reader.php (source)

   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  }


Generated: Fri Nov 28 14:03:12 2014 Cross-referenced by PHPXref 0.7.1