. **/ /** * Class for rendering views. */ class CView { /** * Directory list of MVC views ordered by search priority. */ private static array $directories = ['local/app/views', 'app/views', 'include/views']; /** * Indicates support of web layout modes. */ private bool $layout_modes_enabled = false; /** * Explicitly set layout mode. */ private ?int $layout_mode = null; /** * Directory where the view file was found. */ private ?string $directory = null; private string $assets_path = 'assets'; /** * View name. */ private string $name; /** * List of JavaScript files for inclusion into HTML page using