mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
API Remove deprecated tinymce generator class
This commit is contained in:
parent
fc78763d20
commit
433926fc11
@ -1,36 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace SilverStripe\Forms\HTMLEditor;
|
||||
|
||||
use Exception;
|
||||
use SilverStripe\Control\Controller;
|
||||
use SilverStripe\Core\Injector\Injectable;
|
||||
use SilverStripe\Dev\Deprecation;
|
||||
use TinyMCE_Compressor;
|
||||
|
||||
/**
|
||||
* Uses the default tiny_mc_gzip.php handler
|
||||
*
|
||||
* @deprecated 4.0.0:5.0.0
|
||||
*/
|
||||
class TinyMCEGZIPGenerator implements TinyMCEScriptGenerator
|
||||
{
|
||||
use Injectable;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
Deprecation::notice('5.0', 'Legacy tiny_mce_gzip compressor is deprecated');
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate a script URL for the given config
|
||||
*
|
||||
* @param TinyMCEConfig $config
|
||||
* @return string
|
||||
* @throws Exception
|
||||
*/
|
||||
public function getScriptURL(TinyMCEConfig $config)
|
||||
{
|
||||
return Controller::join_links($config->getTinyMCEResourceURL(), 'tinymce.min.js');
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user