-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc49ce7
commit 469bae0
Showing
6 changed files
with
153 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Mezcalito UX FileManager project. | ||
* | ||
* (c) Mezcalito <dev@mezcalito.fr> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Mezcalito\FileManagerBundle\Provider\Factory; | ||
|
||
use Mezcalito\FileManagerBundle\Provider\LocalFilesystemProvider; | ||
use Symfony\Component\DependencyInjection\Definition; | ||
use Symfony\Component\OptionsResolver\OptionsResolver; | ||
|
||
class LocalFilesystemProviderFactory implements ProviderFactoryInterface | ||
{ | ||
public function support(string $name): bool | ||
{ | ||
return 'local' === $name; | ||
} | ||
|
||
public function configureResolver(OptionsResolver $resolver): void | ||
{ | ||
$resolver->setRequired('path'); | ||
$resolver->setAllowedTypes('path', 'string'); | ||
} | ||
|
||
public function createDefinition(array $options): ?Definition | ||
{ | ||
$definition = new Definition(LocalFilesystemProvider::class); | ||
$definition->setArgument(0, $options['path']); | ||
|
||
return $definition; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Mezcalito UX FileManager project. | ||
* | ||
* (c) Mezcalito <dev@mezcalito.fr> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Mezcalito\FileManagerBundle\Provider\Factory; | ||
|
||
use Symfony\Component\DependencyInjection\Definition; | ||
use Symfony\Component\OptionsResolver\OptionsResolver; | ||
|
||
interface ProviderFactoryInterface | ||
{ | ||
public function support(string $name): bool; | ||
|
||
public function configureResolver(OptionsResolver $resolver): void; | ||
|
||
public function createDefinition(array $options): ?Definition; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.