File modules/cms/output/PHPSerializeOutput.class.php

Last commit: Mon Jan 31 00:00:48 2022 +0100	dankert	Some documentation...
1 <?php 2 3 namespace cms\output; 4 5 use cms\output\APIOutput; 6 use util\json\JSON; 7 8 /** 9 * Renders as a internal serialized PHP array. 10 * A PHP powered client may simply unserialize it. 11 */ 12 class PHPSerializeOutput extends APIOutput 13 { 14 /** 15 * Renders the output in JSON Format. 16 */ 17 protected function renderOutput( $data ) 18 { 19 header('Content-Type: application/json; charset=UTF-8'); 20 return serialize($data); 21 } 22 23 public function getContentType() 24 { 25 return 'application/php-serialized'; 26 } 27 }
Download modules/cms/output/PHPSerializeOutput.class.php
History Mon, 31 Jan 2022 00:00:48 +0100 dankert Some documentation... Sun, 30 Jan 2022 23:38:42 +0100 dankert Refactoring: Only 1 http-endpoint for both the UI and the API. Path "/api" is not available any more, all API data is served under "/".