ILIAS  trunk Revision v12.0_alpha-1221-g4e438232683
ILIAS\MetaData\OERHarvester\ControlCenter\State Namespace Reference

Data Structures

class  StateInfo
 
class  StateInfoFetcher
 
interface  StateInfoFetcherInterface
 
interface  StateInfoInterface
 

Enumerations

enum  Action : string { REJECT = 'reject' }
 
enum  Status : string { PUBLISHED = 'published' }
 

Enumeration Type Documentation

◆ Action

Enumerator
REJECT 

Definition at line 23 of file Action.php.

24{
25 case BLOCK = 'block';
26 case UNBLOCK = 'unblock';
27 case PUBLISH = 'publish';
28 case WITHDRAW = 'withdraw';
29 case SUBMIT = 'submit';
30 case ACCEPT = 'accept';
31 case REJECT = 'reject';
32}

◆ Status

Enumerator
PUBLISHED 

Definition at line 23 of file Status.php.

24{
25 case UNPUBLISHED = 'unpublished';
26 case BLOCKED = 'blocked';
27 case UNDER_REVIEW = 'under_review';
28 case PUBLISHED = 'published';
29}