templator/inc/class.templator.media.php

10 lines
198 B
PHP
Raw Normal View History

2022-12-07 00:07:56 +00:00
<?php
class templatorMedia extends dcMedia
{
// limit to html files
protected function isFileExclude(string $file): bool
{
return !preg_match('/\.html$/i', $file);
}
}