ExternalFileProviderFactory
class ExternalFileProviderFactory (View source)
Class ExternalFileProviderFactory Get ahold of existing external file providers and create new ones.
Properties
| protected EntityManagerInterface | $entityManager | 
Methods
No description
Create a new ExternalFileProvider, pass this to ExternalFileProviderFactory->persist() to store this external file provider.
Fetch a external file provider by its ID.
Fetch a external file provider by its name.
Fetch a list of external file providers.
Store a created external file provider to the database.
Details
        
                            
    __construct(EntityManagerInterface $entityManager)
        
    
    No description
        
                            ExternalFileProvider
    create(ConfigurationInterface $configuration, $name)
        
    
    Create a new ExternalFileProvider, pass this to ExternalFileProviderFactory->persist() to store this external file provider.
        
                            ExternalFileProvider|object|null
    fetchByID(int $id)
        
    
    Fetch a external file provider by its ID.
        
                            ExternalFileProvider|null|object
    fetchByName(string $name)
        
    
    Fetch a external file provider by its name.
        
                            ExternalFileProvider[]|object[]
    fetchList()
        
    
    Fetch a list of external file providers.
        
                            ExternalFileProvider
    persist(ExternalFileProvider $externalFileProvider)
        
    
    Store a created external file provider to the database.