File path: dist/twist/Core/Utilities/Asset.utility.php
Namespace: Twist\Core\Utilities
Extends: Base
edit
— Edit the title and description of an asset by its asset ID
Name | Description |
---|---|
$intAssetID | n/a |
$strTitle | n/a |
[$strDescription = ''] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$intAssetID = 124;
$strTitle = 'foo';
$strDescription = '';
//Call the function edit with the example vars
Twist::Asset() -> edit($intAssetID, $strTitle, $strDescription);