Your IP : 216.73.216.79


Current Path : /var/www/html/dyna-laravel.blunetdev.com/modules/cms/classes/
Upload File :
Current File : /var/www/html/dyna-laravel.blunetdev.com/modules/cms/classes/MediaLibrary.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 winter\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();
    }
}