Newscoop\Services\PlaylistsService::clearPlaylistTemplates PHP Метод

clearPlaylistTemplates() публичный Метод

Clear cache for all temlates assigned to playlist.
public clearPlaylistTemplates ( Playlist $playlist )
$playlist Newscoop\Entity\Playlist
    public function clearPlaylistTemplates($playlist)
    {
        foreach ($playlist->getThemes() as $theme) {
            if (is_array($theme)) {
                foreach ($theme as $file) {
                    \TemplateCacheHandler_DB::clean($file);
                }
            }
        }
    }