mirror of
https://github.com/moodle/moodle.git
synced 2025-04-15 13:33:52 +02:00
MDL-33513 repositories - fix misleading phpdocs
This commit is contained in:
parent
24b96f0170
commit
b2cf2b807f
@ -192,8 +192,7 @@ class boxclient {
|
||||
* Get box.net file info
|
||||
*
|
||||
* @param string $fileid
|
||||
* @param array $params
|
||||
* @return array|null
|
||||
* @return string|null
|
||||
*/
|
||||
function get_file_info($fileid) {
|
||||
$this->_clearErrors();
|
||||
@ -205,7 +204,7 @@ class boxclient {
|
||||
$http = new curl(array('debug'=>$this->debug, 'cache'=>true, 'module_cache'=>'repository'));
|
||||
$xml = $http->get($this->_box_api_url, $params);
|
||||
$o = simplexml_load_string(trim($xml));
|
||||
if($o->status == 's_get_file_info') {
|
||||
if ($o->status == 's_get_file_info') {
|
||||
return $o->info;
|
||||
} else {
|
||||
return null;
|
||||
|
@ -318,7 +318,7 @@ class repository_flickr extends repository {
|
||||
/**
|
||||
* Return the source information
|
||||
*
|
||||
* @param stdClass $url
|
||||
* @param string $photoid
|
||||
* @return string|null
|
||||
*/
|
||||
public function get_file_source_info($photoid) {
|
||||
|
@ -529,7 +529,7 @@ class repository_flickr_public extends repository {
|
||||
/**
|
||||
* Return the source information
|
||||
*
|
||||
* @param stdClass $url
|
||||
* @param string $photoid photo id
|
||||
* @return string|null
|
||||
*/
|
||||
public function get_file_source_info($photoid) {
|
||||
|
@ -2211,8 +2211,8 @@ abstract class repository {
|
||||
* File manager needs to know the original file information before copying
|
||||
* to draft area, so we append these information in mdl_files.source field
|
||||
*
|
||||
* @param string $sourcefield
|
||||
* @param string
|
||||
* @param string $source
|
||||
* @return string serialised source field
|
||||
*/
|
||||
public static function build_source_field($source) {
|
||||
$sourcefield = new stdClass;
|
||||
|
@ -122,8 +122,8 @@ class repository_s3 extends repository {
|
||||
/**
|
||||
* Return the source information
|
||||
*
|
||||
* @param stdClass $url
|
||||
* @return string|null
|
||||
* @param stdClass $filepath
|
||||
* @return string
|
||||
*/
|
||||
public function get_file_source_info($filepath) {
|
||||
return 'Amazon S3:' . $filepath;
|
||||
|
Loading…
x
Reference in New Issue
Block a user