Stylize on Api
[lhc/web/wiklou.git] / includes / api / ApiFormatYaml.php
index 8b74b06..5397bd4 100644 (file)
@@ -1,12 +1,11 @@
 <?php
 
-
 /*
  * Created on Sep 19, 2006
  *
  * API for MediaWiki 1.8+
  *
- * Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
+ * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * http://www.gnu.org/copyleft/gpl.html
  */
 
-if (!defined('MEDIAWIKI')) {
+if ( !defined( 'MEDIAWIKI' ) ) {
        // Eclipse helper - will be ignored in production
-       require_once ('ApiFormatBase.php');
+       require_once ( 'ApiFormatBase.php' );
 }
 
+/**
+ * @ingroup API
+ */
 class ApiFormatYaml extends ApiFormatBase {
 
-       public function __construct($main, $format) {
-               parent :: __construct($main, $format);
+       public function __construct( $main, $format ) {
+               parent :: __construct( $main, $format );
        }
 
        public function getMimeType() {
@@ -40,12 +42,14 @@ class ApiFormatYaml extends ApiFormatBase {
        }
 
        public function execute() {
-               require ('ApiFormatYaml_spyc.php');
-               $this->printText(Spyc :: YAMLDump($this->getResult()->getData()));
+               $this->printText( Spyc :: YAMLDump( $this->getResultData() ) );
+       }
+
+       public function getDescription() {
+               return 'Output data in YAML format' . parent :: getDescription();
        }
 
-       protected function getDescription() {
-               return 'Output data in YAML format';
+       public function getVersion() {
+               return __CLASS__ . ': $Id$';
        }
 }
-?>
\ No newline at end of file