24 lines
579 B
PHP
24 lines
579 B
PHP
<?php
|
|
/**
|
|
* PrestaShop module created by VEKIA, a guy from official PrestaShop community ;-)
|
|
*
|
|
* @author VEKIA https://www.prestashop.com/forums/user/132608-vekia/
|
|
* @copyright 2010-2020 VEKIA
|
|
* @license This program is not free software and you can't resell and redistribute it
|
|
*
|
|
* CONTACT WITH DEVELOPER
|
|
* support@mypresta.eu
|
|
*/
|
|
class Validate extends ValidateCore
|
|
{
|
|
/*
|
|
* module: tinymcepro
|
|
* date: 2023-10-20 10:35:36
|
|
* version: 2.3.4
|
|
*/
|
|
public static function isCleanHtml($html, $allow_iframe = false)
|
|
{
|
|
return true;
|
|
}
|
|
}
|