ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilCalFileZipJob Class Reference
+ Inheritance diagram for ilCalFileZipJob:
+ Collaboration diagram for ilCalFileZipJob:

Public Member Functions

 getType ()
 Get type. More...
 
 run (array $values, \ILIAS\BackgroundTasks\Observer $observer)
 Run. More...
 
 getInputTypes ()
 Get input types. More...
 
 setInput (array $values)
 Set input // what about run input? More...
 
 getOutputType ()
 
 getOutput ()
 Get output. More...
 
 isStateless ()
 
- Public Member Functions inherited from ILIAS\BackgroundTasks\Task\Job
 run (array $input, Observer $observer)
 
 getInput ()
 
 getExpectedTimeOfTaskInSeconds ()
 
- Public Member Functions inherited from ILIAS\BackgroundTasks\Task
 unfoldTask ()
 
 getRemoveOption ()
 
 getAbortOption ()
 

Protected Attributes

 $file
 

Detailed Description

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 12 of file class.ilCalFileZipJob.php.

Member Function Documentation

◆ getInputTypes()

ilCalFileZipJob::getInputTypes ( )

Get input types.

Parameters

Implements ILIAS\BackgroundTasks\Task.

Definition at line 43 of file class.ilCalFileZipJob.php.

References array.

44  {
45  return array("string");
46  }
Create styles array
The data for the language used.

◆ getOutput()

ilCalFileZipJob::getOutput ( )

Get output.

Parameters

Implements ILIAS\BackgroundTasks\Task.

Definition at line 76 of file class.ilCalFileZipJob.php.

References $file.

77  {
78  return $this->file;
79  }

◆ getOutputType()

ilCalFileZipJob::getOutputType ( )
Parameters

Implements ILIAS\BackgroundTasks\Task.

Definition at line 65 of file class.ilCalFileZipJob.php.

66  {
67  return "string";
68  }

◆ getType()

ilCalFileZipJob::getType ( )

Get type.

Returns
string

Implements ILIAS\BackgroundTasks\Task.

Definition at line 21 of file class.ilCalFileZipJob.php.

22  {
23  return "mytype";
24  }

◆ isStateless()

ilCalFileZipJob::isStateless ( )
Parameters

Implements ILIAS\BackgroundTasks\Task\Job.

Definition at line 88 of file class.ilCalFileZipJob.php.

89  {
90  return false;
91  }

◆ run()

ilCalFileZipJob::run ( array  $values,
\ILIAS\BackgroundTasks\Observer  $observer 
)

Run.

Parameters

Definition at line 32 of file class.ilCalFileZipJob.php.

References file.

33  {
34  $this->file = current($values);
35  }
Reload workbook from saved file

◆ setInput()

ilCalFileZipJob::setInput ( array  $values)

Set input // what about run input?

Parameters

Implements ILIAS\BackgroundTasks\Task.

Definition at line 53 of file class.ilCalFileZipJob.php.

References file.

54  {
55  $this->file = current($values);
56  }
Reload workbook from saved file

Field Documentation

◆ $file

ilCalFileZipJob::$file
protected

Definition at line 14 of file class.ilCalFileZipJob.php.

Referenced by getOutput().


The documentation for this class was generated from the following file: