11 lines
262 B
PHP
11 lines
262 B
PHP
<?php
|
|
|
|
namespace ctiso\Controller;
|
|
|
|
interface SiteInterface {
|
|
function loadComponent($expression);
|
|
function getDatabase();
|
|
function getConfig();
|
|
function setComponentConfig($config);
|
|
function addRequireJsPath($name, $path, $schim = null);
|
|
}
|