templator/inc/class.templator.media.php

21 lines
429 B
PHP
Raw Normal View History

2022-12-07 20:58:18 +00:00
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
class templatorMedia extends dcMedia
{
// limit to html files
protected function isFileExclude(string $file): bool
{
return !preg_match('/\.html$/i', $file);
}
}