add methods to get icon on article natures

This commit is contained in:
Ludovic CANDELLIER
2023-09-12 23:00:36 +02:00
parent 470560efb6
commit a29faabbf2
22 changed files with 583 additions and 155 deletions

View File

@@ -18,6 +18,16 @@ class Storage
return Storage2::disk('local')->has($dir);
}
public static function move($source, $target)
{
return Storage2::move($source, $target);
}
public static function copy($source, $target)
{
return Storage2::copy($source, $target);
}
public static function checkFile($file)
{
return Storage2::exists($file);