D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
lsws
/
add-ons
/
webcachemgr
/
src
/
View
/
Model
/
Filename :
CacheRootNotSetViewModel.php
back
Copy
<?php /** ****************************************** * LiteSpeed Web Server Cache Manager * * @author Michael Alegre * @copyright 2018-2025 LiteSpeed Technologies, Inc. * ******************************************* */ namespace Lsc\Wp\View\Model; use Lsc\Wp\Context\Context; use Lsc\Wp\LSCMException; class CacheRootNotSetViewModel { public function __construct() { /** * Nothing to do */ } /** * * @return string * * @throws LSCMException Thrown indirectly by Context::getOption() call. */ public function getTpl() { return Context::getOption()->getSharedTplDir() . '/CacheRootNotSet.tpl'; } }