mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
inline docs improvements
This commit is contained in:
parent
552adc27d7
commit
593bb2ebf5
2 changed files with 6 additions and 6 deletions
|
@ -7,7 +7,7 @@ abstract class file_packer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* archive files and store the result in file storage
|
* archive files and store the result in file storage
|
||||||
* @param array $archivepath=>$pathanme or stored file instance
|
* @param array $files array with zip paths as keys (archivepath=>ospathname or archivepath=>stored_file)
|
||||||
* @param int $contextid
|
* @param int $contextid
|
||||||
* @param string $filearea
|
* @param string $filearea
|
||||||
* @param int $itemid
|
* @param int $itemid
|
||||||
|
@ -19,8 +19,8 @@ abstract class file_packer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Archive files and store the result in os file
|
* Archive files and store the result in os file
|
||||||
* @param array $archivepath=>$pathanme or stored file instance
|
* @param array $files array with zip paths as keys (archivepath=>ospathname or archivepath=>stored_file)
|
||||||
* @param string $archivefile
|
* @param string $archivefile path to target zip file
|
||||||
* @return bool success
|
* @return bool success
|
||||||
*/
|
*/
|
||||||
public abstract function archive_to_pathname($files, $archivefile);
|
public abstract function archive_to_pathname($files, $archivefile);
|
||||||
|
|
|
@ -10,7 +10,7 @@ class zip_packer extends file_packer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Zip files and store the result in file storage
|
* Zip files and store the result in file storage
|
||||||
* @param array $archivepath=>$pathanme or stored file instance
|
* @param array $files array with zip paths as keys (archivepath=>ospathname or archivepath=>stored_file)
|
||||||
* @param int $contextid
|
* @param int $contextid
|
||||||
* @param string $filearea
|
* @param string $filearea
|
||||||
* @param int $itemid
|
* @param int $itemid
|
||||||
|
@ -49,8 +49,8 @@ class zip_packer extends file_packer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Zip files and store the result in os file
|
* Zip files and store the result in os file
|
||||||
* @param array $archivepath=>$pathanme or stored file instance
|
* @param array $files array with zip paths as keys (archivepath=>ospathname or archivepath=>stored_file)
|
||||||
* @param string $archivefile
|
* @param string $archivefile path to target zip file
|
||||||
* @return bool success
|
* @return bool success
|
||||||
*/
|
*/
|
||||||
public function archive_to_pathname($files, $archivefile) {
|
public function archive_to_pathname($files, $archivefile) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue