Merge pull request #9747 from creative-commoners/pulls/4/usedontable-docs

DOC Document the file usage table
This commit is contained in:
Maxime Rainville 2020-11-04 10:59:05 +13:00 committed by GitHub
commit e5a55a98d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 123 additions and 0 deletions

View File

@ -0,0 +1,84 @@
---
title: File usage
summary: See file usage and customising the file "Used on" table
icon: compress-arrows-alt
---
# File Usage
CMS users can view where a file is used by accessing the Used On tab in the Files section. This feature allows them to identify what DataObjects depend on the file.
In the Files section of the CMS, click on a file to see file details. Within the file details panel there is a
Used on tab that shows a table of Pages and other DataObjects where the file is used throughout the website.
## Customising the File "Used on" table in the Files section (asset-admin)
Your project specific DataObject will automatically be displayed on the Used on tab. This may not always be desirable, especially when working with background DataObjects the user can not interact with directly. Extensions can be applied
to the `UsedOnTable` class to update specific entries.
Extension hooks can be used to do the following:
- Exclude DataObjects of a particular type of class from being fetched from the database
- Exclude individual DataObjects that were fetched for showing on the used on table
- Link ancestors of a DataObject so they show on the same row of the used on table
### Example PHP file:
```php
<?php
namespace My\App\Extensions;
use SilverStripe\Core\Extension;
use SilverStripe\ORM\DataObject;
class UsedOnTableExtension extends Extension
{
// This extension hook will prevent type(s) of DataObjects from showing on the Used on tab in the Files section
// This will prevent a MyDataObjectToExclude::get() call from being executed
public function updateUsageExcludedClasses(array &$excludedClasses)
{
$excludedClasses[] = MyDataObjectToExclude::class;
}
// This extension hook will alter a DataObject after it was fetched via MyDataObject::get()
// This allows a greater level of flexibility to exclude or modify individual DataObjects
// It is less efficient to use this extension hook that `updateUsageExcludedClasses()` above
public function updateUsageDataObject(DataObject $dataObject)
{
if (!($dataObject instanceof MyDataObject)) {
return;
}
// Exclude DataObject from showing
if ($dataObject->Title == 'lorem ipsum') {
$dataObject = null;
}
// Show the DataObject's Parent() instead
$dataObject = $dataObject->Parent();
}
// This extension hook is used to to show ancestor DataObjects in the used on table alongside the
// DataObject the File is used on. This is useful for two reasons:
// - It gives context more context, for instance if File is used on a Content block, it can be used to show the
// Page that Content Block is used on
// - The DataObject may not have a `CMSEditLink()` implementation, though the ancestor DataObject does.
// The CMS frontend will fallback to using the Ancestor `CMSEditLink()` for when a user clicks on a row on
// the used on table
public function updateUsageAncestorDataObjects(array &$ancestorDataObjects, DataObject $dataObject)
{
if (!($dataObject instanceof MyDataObjectThatIWantToLink)) {
return;
}
$parentObjectIWantToIgnore = $dataObject->MyParentComponent();
$grandParentObjectIWantToLink = $parentObjectIWantToIgnore->MyParentComponent();
// Add $grandParentObjectIWantToLink to ancestors, but not $parentObjectIWantToIgnore
$ancestorDataObjects[] = $grandParentIWantToLink;
}
}
### Example YML file:
```yml
SilverStripe\Admin\Forms\UsedOnTable:
extensions:
- My\App\Extensions\UsedOnTableExtension
```

View File

@ -2,6 +2,7 @@
## Overview
- [Updated file usage table](#updated-file-usage-table)
- [Experimental support for PHP 8](#experimental-support-for-php-8)
- [Support for Symfony 4 Components](#support-for-symfony-4-components)
- [Default MySQL collation updated](#default-mysql-collation-updated)
@ -10,6 +11,24 @@
## New features
### Updated file usage table
CMS users can view where a file is used by accessing the Used on tab in the Files section. This feature allows them to
identify what DataObjects depend on the file.
The following changes have been made to the Used on table:
- Data is now sourced from `has_one` and `many_many` relations instead of the ownership API
- This means more data relationships should be shown than before
- Uses the new `RelatedDataService` API in the framework module which can also be used for other non-file use cases
- Support for linking ancestor relationships in the same table row, for instance showing the Page a Content Block is on
- Ability to click on a row and navigate to the most relevant `CMSEditLink()`
- Removal of draft badges
- Styling tweaks such as reduced padding
Your project specific DataObjects will automatically be displayed on this Used on tab. This may not always be desirable,
especially when working with background DataObjects the user can not interact with directly. It is recommended you view
the CMS Developer Guide for more information on this change, see the [File Usage section](docs/en/02_Developer_Guides/14_Files/07_File_Usage).
### Experimental support for PHP 8
You can now run Silverstripe CMS on PHP 8, which is due for release in November 2020. PHP 8 includes

View File

@ -2,6 +2,7 @@
## Overview
- [Updated file usage table](#updated-file-usage-table)
- [Experimental support for PHP 8](#experimental-support-for-php-8)
- [Support for Symfony 4 Components](#support-for-symfony-4-components)
- [Default MySQL collation updated](#default-mysql-collation-updated)
@ -10,6 +11,25 @@
## New features
### Updated file usage table
CMS users can view where a file is used by accessing the Used on tab in the Files section. This feature allows them to
identify what DataObjects depend on the file.
The following changes have been made to the Used on table:
- Data is now sourced from `has_one` and `many_many` relations instead of the ownership API
- This means more data relationships should be shown than before
- Uses the new `RelatedDataService` API in the framework module which can also be used for other non-file use cases
- Support for linking ancestor relationships in the same table row, for instance showing the Page a Content Block is on
- Usage data is lazy-loaded when the Used on tab is selected to minimise its performance impact
- Ability to click on a row and navigate to the most relevant `CMSEditLink()`
- Removal of draft badges
- Styling tweaks such as reduced padding
Your project specific DataObjects will automatically be displayed on this Used on tab. This may not always be desirable,
especially when working with background DataObjects the user can not interact with directly. It is recommended you view
the CMS Developer Guide for more information on this change, see the [File Usage section](docs/en/02_Developer_Guides/14_Files/07_File_Usage).
### Experimental support for PHP 8
You can now run Silverstripe CMS on PHP 8, which is due for release in November 2020. PHP 8 includes