winter/modules/cms/classes/MediaLibrary.php
2021-03-07 02:24:21 -06:00

24 lines
653 B
PHP

<?php namespace Cms\Classes;
use System\Classes\MediaLibrary as SystemMediaLibrary;
/**
* Provides abstraction level for the Media Library operations.
* Implements the library caching features and security checks.
*
* @package wintercms\wn-cms-module
* @author Alexey Bobkov, Samuel Georges
* @deprecated Use System\Classes\MediaLibrary. Remove if year >= 2020.
*/
class MediaLibrary extends SystemMediaLibrary
{
/**
* Initialize this singleton.
*/
protected function init()
{
traceLog('Class ' . __CLASS__ . ' has been deprecated, use ' . SystemMediaLibrary::class . ' instead.');
parent::init();
}
}