2009-07-01 22:28:06 +00:00
|
|
|
<?php
|
|
|
|
class FilesystemSyncTask extends BuildTask {
|
2009-10-21 04:37:02 +00:00
|
|
|
|
2009-07-01 22:28:06 +00:00
|
|
|
protected $title = "Sync Files & Images assets";
|
|
|
|
|
|
|
|
protected $description = "The Files & Images system in SilverStripe maintains its own database
|
|
|
|
of the contents of the assets/ folder. This action will update that database, and
|
|
|
|
should be called whenever files are added to the assets/ folder from outside
|
|
|
|
SilverStripe, for example, if an author uploads files via FTP.";
|
|
|
|
|
|
|
|
function run($request) {
|
2009-10-21 04:37:02 +00:00
|
|
|
if(isset($_GET['folderID'])) {
|
|
|
|
$folderID = $_GET['folderID'];
|
|
|
|
} else {
|
|
|
|
$folderID = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
echo Filesystem::sync($folderID);
|
2009-07-01 22:28:06 +00:00
|
|
|
}
|
2009-10-21 04:37:02 +00:00
|
|
|
|
2009-07-01 22:28:06 +00:00
|
|
|
}
|