mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
32 lines
851 B
PHP
32 lines
851 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Dev\Tasks;
|
|
|
|
use SilverStripe\ORM\DB;
|
|
use SilverStripe\Assets\FileMigrationHelper;
|
|
use SilverStripe\Dev\BuildTask;
|
|
|
|
/**
|
|
* Migrates all 3.x file dataobjects to use the new DBFile field.
|
|
*/
|
|
class MigrateFileTask extends BuildTask
|
|
{
|
|
|
|
private static $segment = 'MigrateFileTask';
|
|
|
|
protected $title = 'Migrate File dataobjects from 3.x';
|
|
|
|
protected $description
|
|
= 'Imports all files referenced by File dataobjects into the new Asset Persistence Layer introduced in 4.0';
|
|
|
|
public function run($request)
|
|
{
|
|
$migrated = FileMigrationHelper::singleton()->run();
|
|
if ($migrated) {
|
|
DB::alteration_message("{$migrated} File DataObjects upgraded", "changed");
|
|
} else {
|
|
DB::alteration_message("No File DataObjects need upgrading", "notice");
|
|
}
|
|
}
|
|
}
|