2015-02-24 22:02:03 -08:00
|
|
|
<?php namespace Cms\Classes;
|
|
|
|
|
2017-09-27 22:12:45 -06:00
|
|
|
use System\Classes\MediaLibraryItem as SystemMediaLibraryItem;
|
2015-03-15 12:52:03 -07:00
|
|
|
|
2015-02-24 22:02:03 -08:00
|
|
|
/**
|
|
|
|
* Represents a file or folder in the Media Library.
|
|
|
|
*
|
|
|
|
* @package october\cms
|
|
|
|
* @author Alexey Bobkov, Samuel Georges
|
2017-09-27 22:12:45 -06:00
|
|
|
* @deprecated Use System\Classes\MediaLibraryItem. Remove if year >= 2020.
|
2015-02-24 22:02:03 -08:00
|
|
|
*/
|
2017-09-27 22:12:45 -06:00
|
|
|
class MediaLibraryItem extends SystemMediaLibraryItem
|
2015-02-24 22:02:03 -08:00
|
|
|
{
|
2017-09-27 22:12:45 -06:00
|
|
|
public function __construct()
|
2015-02-24 22:02:03 -08:00
|
|
|
{
|
2018-01-12 09:23:20 +03:00
|
|
|
traceLog('Class Cms\Classes\MediaLibraryItem has been deprecated, use ' . SystemMediaLibraryItem::class . ' instead.');
|
2017-09-27 22:12:45 -06:00
|
|
|
parent::__construct(...func_get_args());
|
2015-03-15 12:52:03 -07:00
|
|
|
}
|
2015-09-24 19:11:32 +01:00
|
|
|
}
|