Function __global->get_upload_syndication_json

Definitions

sources/upload_syndication.php

  • Get details for what upload syndication we can do for particular filtered upload types.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$file_handling_types integer No No required parameter N/A N/A The kind of files we are going to be handling

Returns

  • A pair: JSON data describing what upload syndication we can do (may be null), a filetype filter
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Get details for what upload syndication we can do for particular filtered upload types.
 *
 * @param  integer $file_handling_types The kind of files we are going to be handling
 * @return array A pair: JSON data describing what upload syndication we can do (may be null), a filetype filter
 */

function get_upload_syndication_json(int $file_handling_types) : array