Assets

Type
Class
Namespace
craft\helpers
Inherits
craft\helpers\Assets
Since
3.0.0

Class Assets

View source (opens new window)

# Public Methods

Method Description
fileTransferList() Create an asset transfer list based on a list of assets and an array of changing folder IDs.
filename2Title() Generates a default asset title based on its filename.
generateUrl() Generates a URL for a given Assets file in a Source Type.
getAllowedFileKinds() Returns a list of file kinds that are allowed to be uploaded.
getFileKindByExtension() Return a file's kind by a file's extension.
getFileKindLabel() Returns the label of a given file kind.
getFileKinds() Returns a list of the supported file kinds.
getImageEditorSource() Return an image path to use in the Image Editor for an asset by its ID and size.
getMaxUploadSize() Returns the maximum allowed upload size in bytes per all config settings combined.
mirrorFolderStructure() Mirrors a folder structure on a volume.
parseFileLocation() Parses a file location in the format of {folder:X}filename.ext returns the folder ID + filename.
parseSrcsetSize() Parses a srcset size (e.g. 100w or 2x).
periodList() Get a list of available periods for Cache duration settings.
prepareAssetName() Clean an Asset's filename.
scaledDimensions() Returns scaled width & height values for a maximum container size.
sortFolderTree() Sorts a folder tree by the volume sort order.
tempFilePath() Get a temporary file path.
urlAppendix() Get appendix for a URL based on its Source caching settings.

# fileTransferList()

Create an asset transfer list based on a list of assets and an array of changing folder IDs.

View source (opens new window)

Arguments

Returns

array (opens new window)

# filename2Title()

Generates a default asset title based on its filename.

View source (opens new window)

Arguments

Returns

string (opens new window)

# generateUrl()

Generates a URL for a given Assets file in a Source Type.

View source (opens new window)

Arguments

Returns

string (opens new window)

# getAllowedFileKinds()

Since
3.1.16

Returns a list of file kinds that are allowed to be uploaded.

View source (opens new window)

Returns

array (opens new window) – The allowed file kinds

# getFileKindByExtension()

Return a file's kind by a file's extension.

View source (opens new window)

Arguments

Returns

string (opens new window) – The file kind, or "unknown" if unknown.

# getFileKindLabel()

Returns the label of a given file kind.

View source (opens new window)

Arguments

Returns

string (opens new window)

# getFileKinds()

Returns a list of the supported file kinds.

View source (opens new window)

Returns

array (opens new window) – The supported file kinds

# getImageEditorSource()

Return an image path to use in the Image Editor for an asset by its ID and size.

View source (opens new window)

Arguments

Returns

false (opens new window), string (opens new window)

Throws

# getMaxUploadSize()

Returns the maximum allowed upload size in bytes per all config settings combined.

View source (opens new window)

Returns

integer (opens new window), float (opens new window)

# mirrorFolderStructure()

Mirrors a folder structure on a volume.

View source (opens new window)

Arguments

Returns

array (opens new window) – Map of original folder ID => new folder ID

# parseFileLocation()

Parses a file location in the format of {folder:X}filename.ext returns the folder ID + filename.

View source (opens new window)

Arguments

Returns

array (opens new window)

Throws

# parseSrcsetSize()

Since
3.5.0

Parses a srcset size (e.g. 100w or 2x).

View source (opens new window)

Arguments

  • $size (mixed)

Returns

array (opens new window) – An array of the size value and unit (w or x)

Throws

# periodList()

Get a list of available periods for Cache duration settings.

View source (opens new window)

Returns

array (opens new window)

# prepareAssetName()

Clean an Asset's filename.

View source (opens new window)

Arguments

Returns

string (opens new window)

# scaledDimensions()

Since
3.4.21

Returns scaled width & height values for a maximum container size.

View source (opens new window)

Arguments

Returns

array (opens new window) – The scaled width and height

# sortFolderTree()

DEPRECATED

Deprecated in 3.8.0

Sorts a folder tree by the volume sort order.

View source (opens new window)

Arguments

# tempFilePath()

Get a temporary file path.

View source (opens new window)

Arguments

Returns

string (opens new window) – The temporary file path

Throws

# urlAppendix()

Get appendix for a URL based on its Source caching settings.

View source (opens new window)

Arguments

Returns

string (opens new window)

# Constants

Constant Description
INDEX_SKIP_ITEMS_PATTERN

# Events

# EVENT_REGISTER_FILE_KINDS

Type
craft\events\RegisterAssetFileKindsEvent

The event that is triggered when registering asset file kinds.

# EVENT_SET_FILENAME

Type
craft\events\SetAssetFilenameEvent

The event that is triggered when defining an asset’s filename.