]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - includes/api/ApiFormatNone.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / includes / api / ApiFormatNone.php
similarity index 56%
rename from includes/api/ApiFormatYaml.php
rename to includes/api/ApiFormatNone.php
index e849c465310681c400ae2641628f04df1f20e3d3..dc623ac1e9eab0d8da296c6ec1bf43728664eccd 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 /**
- * API for MediaWiki 1.8+
  *
- * Created on Sep 19, 2006
  *
- * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
+ * Created on Oct 22, 2006
+ *
+ * Copyright © 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
  * @file
  */
 
-if ( !defined( 'MEDIAWIKI' ) ) {
-       // Eclipse helper - will be ignored in production
-       require_once( 'ApiFormatBase.php' );
-}
-
 /**
- * API YAML output formatter
+ * API Serialized PHP output formatter
  * @ingroup API
  */
-class ApiFormatYaml extends ApiFormatBase {
-
-       public function __construct( $main, $format ) {
-               parent::__construct( $main, $format );
-       }
+class ApiFormatNone extends ApiFormatBase {
 
        public function getMimeType() {
-               return 'application/yaml';
+               return 'text/plain';
        }
 
        public function execute() {
-               $this->printText( Spyc::YAMLDump( $this->getResultData() ) );
-       }
-
-       public function getDescription() {
-               return 'Output data in YAML format' . parent::getDescription();
-       }
-
-       public function getVersion() {
-               return __CLASS__ . ': $Id$';
        }
 }