You are here

public function ImceFM::getFolderProperties in IMCE 8.2

Same name and namespace in other branches
  1. 8 src/ImceFM.php \Drupal\imce\ImceFM::getFolderProperties()

Returns js properties of a folder.

1 call to ImceFM::getFolderProperties()
ImceFM::addItemToJs in src/ImceFM.php
Add an item to the response.

File

src/ImceFM.php, line 489

Class

ImceFM
Imce File Manager.

Namespace

Drupal\imce

Code

public function getFolderProperties($uri) {
  return [
    'date' => filemtime($uri),
  ];
}